blob: 7fd2e5502515c588a0dd0e36bfd573dabe0e7dac (
plain)
1
2
3
4
5
6
7
8
9
10
|
cmake_minimum_required(VERSION 3.16)
project(game_features)
# Header-only interface library
# The canonical game feature headers live inside uibase's game_features/ subdirectory.
# We expose them here so game plugins can #include <bsainvalidation.h>, <igamefeatures.h>, etc.
add_library(game_features INTERFACE)
target_include_directories(game_features INTERFACE
${CMAKE_SOURCE_DIR}/libs/uibase/include/uibase/game_features
)
|