16 lines
632 B
CMake
16 lines
632 B
CMake
|
cmake_minimum_required(VERSION 2.8.8)
|
||
|
|
||
|
project(classicmode)
|
||
|
|
||
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||
|
include_directories(${CMAKE_SOURCE_DIR}/shared)
|
||
|
|
||
|
file(GLOB_RECURSE HEADERS "shared/*.h")
|
||
|
file(GLOB_RECURSE SOURCES "editor/*.h" "editor/*.cpp" "game/*.h" "game/*.cpp" "./classicfactory.cpp")
|
||
|
|
||
|
add_library(classicmode STATIC ${SOURCES} ${HEADERS})
|
||
|
target_include_directories(classicmode PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||
|
target_include_directories(classicmode PRIVATE ${CMAKE_SOURCE_DIR}/tools/shared)
|
||
|
target_include_directories(classicmode PRIVATE ${CMAKE_SOURCE_DIR}/core/shared)
|
||
|
target_link_libraries(classicmode tools core)
|