diff options
Diffstat (limited to 'libs/game_features/CMakeLists.txt')
| -rw-r--r-- | libs/game_features/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/game_features/CMakeLists.txt b/libs/game_features/CMakeLists.txt new file mode 100644 index 0000000..7fd2e55 --- /dev/null +++ b/libs/game_features/CMakeLists.txt @@ -0,0 +1,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 +) |
