summary refs log tree commit diff stats
path: root/tools/util/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tools/util/CMakeLists.txt')
-rw-r--r--tools/util/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/util/CMakeLists.txt b/tools/util/CMakeLists.txt index 8eb8d3b..f086e10 100644 --- a/tools/util/CMakeLists.txt +++ b/tools/util/CMakeLists.txt
@@ -1,5 +1,10 @@
1find_package(Protobuf REQUIRED)
2
1add_library(util 3add_library(util
4 identifiers.cpp
2 naming.cpp 5 naming.cpp
3) 6)
4set_property(TARGET util PROPERTY CXX_STANDARD 20) 7set_property(TARGET util PROPERTY CXX_STANDARD 20)
5set_property(TARGET util PROPERTY CXX_STANDARD_REQUIRED ON) 8set_property(TARGET util PROPERTY CXX_STANDARD_REQUIRED ON)
9target_include_directories(util PUBLIC ${CMAKE_BINARY_DIR})
10target_link_libraries(util PUBLIC protos protobuf::libprotobuf)