Merge pull request #2122 from CookiePLMonster/high-perf-graphics-ldr
Export high performance graphics hints in cxbxr-ldr.exe
This commit is contained in:
commit
70088b3697
|
@ -226,7 +226,6 @@ file (GLOB CXBXR_SOURCE_COMMON
|
|||
"${CXBXR_ROOT_DIR}/src/common/xdvdfs-tools/buffered_io.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/common/xdvdfs-tools/xdvdfs.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/CxbxVersion.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/HighPerformanceGraphicsEnabler.c"
|
||||
)
|
||||
|
||||
# GUI v1
|
||||
|
@ -247,6 +246,11 @@ file (GLOB CXBXR_SOURCE_GUIv1
|
|||
"${CXBXR_ROOT_DIR}/src/gui/WndMain.cpp"
|
||||
)
|
||||
|
||||
# Executables (cxbx and cxbxr-ldr)
|
||||
file (GLOB CXBXR_SOURCE_EXECUTABLES
|
||||
"${CXBXR_ROOT_DIR}/src/HighPerformanceGraphicsEnabler.c"
|
||||
)
|
||||
|
||||
# Emulator (module)
|
||||
# TODO: Merge CXBXR_KRNL_CPP into CXBXR_SOURCE_EMU once cxbx project is removed.
|
||||
file (GLOB CXBXR_KRNL_CPP
|
||||
|
@ -254,7 +258,6 @@ file (GLOB CXBXR_KRNL_CPP
|
|||
)
|
||||
file (GLOB CXBXR_SOURCE_EMU
|
||||
"${CXBXR_KRNL_CPP}"
|
||||
"${CXBXR_ROOT_DIR}/HighPerformanceGraphicsEnabler.c"
|
||||
"${CXBXR_ROOT_DIR}/src/common/AddressRanges.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/common/VerifyAddressRanges.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/common/util/gloffscreen/glextensions.cpp"
|
||||
|
|
|
@ -87,6 +87,7 @@ source_group(TREE ${CXBXR_ROOT_DIR}/src PREFIX source FILES
|
|||
${CXBXR_SOURCE_GUIv1}
|
||||
${CXBXR_SOURCE_COMMON}
|
||||
${CXBXR_SOURCE_EMU}
|
||||
${CXBXR_SOURCE_EXECUTABLES}
|
||||
)
|
||||
|
||||
source_group(TREE ${CXBXR_ROOT_DIR} FILES ${RESOURCES})
|
||||
|
@ -98,6 +99,7 @@ add_executable(cxbx WIN32 ${RESOURCES}
|
|||
${CXBXR_SOURCE_GUIv1}
|
||||
${CXBXR_SOURCE_COMMON}
|
||||
${CXBXR_SOURCE_EMU}
|
||||
${CXBXR_SOURCE_EXECUTABLES}
|
||||
${CXBXR_GIT_VERSION_H}
|
||||
)
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ file (GLOB SOURCES
|
|||
"${CXBXR_ROOT_DIR}/src/common/AddressRanges.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/common/ReserveAddressRanges.cpp"
|
||||
"${CXBXR_ROOT_DIR}/src/loader/cxbxr-ldr.cpp"
|
||||
${CXBXR_SOURCE_EXECUTABLES}
|
||||
)
|
||||
|
||||
source_group(TREE ${CXBXR_ROOT_DIR}/src PREFIX header FILES ${HEADERS})
|
||||
|
|
Loading…
Reference in New Issue