mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
Properly list files in CMakeLists instead of using GLOB (#249)
This commit is contained in:
parent
910cdf4d5c
commit
4a3d02db55
9 changed files with 757 additions and 89 deletions
|
@ -1,8 +1,17 @@
|
|||
project(CemuConfig)
|
||||
|
||||
file(GLOB CPP_FILES *.cpp)
|
||||
file(GLOB H_FILES *.h)
|
||||
add_library(CemuConfig ${CPP_FILES} ${H_FILES})
|
||||
add_library(CemuConfig
|
||||
ActiveSettings.cpp
|
||||
ActiveSettings.h
|
||||
CemuConfig.cpp
|
||||
CemuConfig.h
|
||||
ConfigValue.h
|
||||
LaunchSettings.cpp
|
||||
LaunchSettings.h
|
||||
PermanentConfig.cpp
|
||||
PermanentConfig.h
|
||||
PermanentStorage.cpp
|
||||
PermanentStorage.h
|
||||
XMLConfig.h
|
||||
)
|
||||
|
||||
set_property(TARGET CemuConfig PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue