Files
itgmania212121/src/CMakeData-globals.cmake
T
phantom10111andteejusb 48e797bf35 Move generated directory to build directory
StepMania generates some files during build but it's a bit unusual to generate
them in source directory instead of build directory. Move them to build
directory and remove src/generated from .gitignore.
2024-04-12 22:40:09 -07:00

23 lines
798 B
CMake

list(APPEND SMDATA_GLOBAL_FILES_SRC
"GameLoop.cpp"
"global.cpp"
"SpecialFiles.cpp"
"StepMania.cpp" # TODO: Refactor into separate main project.
"${SM_GENERATED_SRC_DIR}/verstub.cpp")
list(APPEND SMDATA_GLOBAL_FILES_HPP
"${SM_GENERATED_SRC_DIR}/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})