mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-11-18 07:06:26 +00:00
9 lines
269 B
CMake
9 lines
269 B
CMake
include_directories("${PROJECT_SOURCE_DIR}"
|
|
"${PROJECT_SOURCE_DIR}/thirdparty/loguru/"
|
|
)
|
|
|
|
file(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")
|
|
|
|
add_library(core OBJECT ${SOURCES})
|
|
target_link_libraries(core PRIVATE SDL2::SDL2)
|