diff options
Diffstat (limited to 'tools/util/CMakeLists.txt')
| -rw-r--r-- | tools/util/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
| diff --git a/tools/util/CMakeLists.txt b/tools/util/CMakeLists.txt index f086e10..0859a58 100644 --- a/tools/util/CMakeLists.txt +++ b/tools/util/CMakeLists.txt | |||
| @@ -1,10 +1,13 @@ | |||
| 1 | find_package(Protobuf REQUIRED) | 1 | find_package(Protobuf REQUIRED) |
| 2 | find_package(yaml-cpp REQUIRED) | ||
| 2 | 3 | ||
| 3 | add_library(util | 4 | add_library(util |
| 5 | godot_scene.cpp | ||
| 4 | identifiers.cpp | 6 | identifiers.cpp |
| 7 | ids_yaml_format.cpp | ||
| 5 | naming.cpp | 8 | naming.cpp |
| 6 | ) | 9 | ) |
| 7 | set_property(TARGET util PROPERTY CXX_STANDARD 20) | 10 | set_property(TARGET util PROPERTY CXX_STANDARD 20) |
| 8 | set_property(TARGET util PROPERTY CXX_STANDARD_REQUIRED ON) | 11 | set_property(TARGET util PROPERTY CXX_STANDARD_REQUIRED ON) |
| 9 | target_include_directories(util PUBLIC ${CMAKE_BINARY_DIR}) | 12 | target_include_directories(util PUBLIC ${CMAKE_BINARY_DIR}) |
| 10 | target_link_libraries(util PUBLIC protos protobuf::libprotobuf) | 13 | target_link_libraries(util PUBLIC protos protobuf::libprotobuf yaml-cpp::yaml-cpp) |
