You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
421 B
16 lines
421 B
cmake_minimum_required(VERSION 3.20) |
|
set(CMAKE_CXX_STANDARD 20) |
|
project(kst_dgs) |
|
|
|
find_package(Boost REQUIRED) |
|
|
|
add_library( |
|
${PROJECT_NAME} INTERFACE |
|
includes/kst/dgs/entity.hpp |
|
includes/kst/dgs/core.hpp |
|
includes/kst/dgs/components/component.hpp |
|
includes/kst/dgs/systems/system.hpp |
|
includes/kst/dgs/dgs.hpp |
|
) |
|
|
|
target_include_directories(${PROJECT_NAME} INTERFACE includes) |