Allow linking against system libraries for almost everything (#1790)

This commit is contained in:
Tatsh
2019-02-16 08:32:52 -08:00
committed by Colby Klein
parent 021d494157
commit b8a79cd0f6
78 changed files with 4870 additions and 4776 deletions
+18 -15
View File
@@ -1,19 +1,22 @@
list(APPEND SMDATA_GLOBAL_FILES_SRC
"GameLoop.cpp"
"global.cpp"
"SpecialFiles.cpp"
"StepMania.cpp" # TODO: Refactor into separate main project.
"${SM_SRC_DIR}/generated/verstub.cpp"
)
"GameLoop.cpp"
"global.cpp"
"SpecialFiles.cpp"
"StepMania.cpp" # TODO: Refactor into separate main project.
"${SM_SRC_DIR}/generated/verstub.cpp")
list(APPEND SMDATA_GLOBAL_FILES_HPP
"generated/config.hpp"
"GameLoop.h"
"global.h"
"ProductInfo.h" # TODO: Have this be auto-generated.
"SpecialFiles.h"
"StdString.h" # TODO: Remove the need for this file, transition to std::string.
"StepMania.h" # TODO: Refactor into separate main project.
)
"generated/config.hpp"
"GameLoop.h"
"global.h"
"ProductInfo.h" # TODO: Have this be auto-generated.
"SpecialFiles.h"
"StdString.h" # TODO: Remove the need for this file, transition to
# std::string.
"StepMania.h" # TODO: Refactor into separate main project.
)
source_group("Global Files" FILES ${SMDATA_GLOBAL_FILES_SRC} ${SMDATA_GLOBAL_FILES_HPP})
source_group("Global Files"
FILES
${SMDATA_GLOBAL_FILES_SRC}
${SMDATA_GLOBAL_FILES_HPP})