stuff-from-scratch/src/core/CMakeLists.txt

13 lines
322 B
CMake
Raw Normal View History

2020-05-02 07:31:03 +00:00
list(APPEND core_LIB_INCLUDES
Event.cpp
Color.cpp
CommandLineArgs.cpp
loggers/FileLogger.cpp
StringUtils.cpp)
# add the executable
add_library(core SHARED ${core_LIB_INCLUDES})
target_include_directories(core PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}"
)