diff options
Diffstat (limited to 'tools/assign_ids/CMakeLists.txt')
-rw-r--r-- | tools/assign_ids/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/assign_ids/CMakeLists.txt b/tools/assign_ids/CMakeLists.txt new file mode 100644 index 0000000..0a9f62d --- /dev/null +++ b/tools/assign_ids/CMakeLists.txt | |||
@@ -0,0 +1,9 @@ | |||
1 | find_package(Protobuf REQUIRED) | ||
2 | |||
3 | add_executable(assign_ids | ||
4 | main.cpp | ||
5 | ) | ||
6 | set_property(TARGET assign_ids PROPERTY CXX_STANDARD 20) | ||
7 | set_property(TARGET assign_ids PROPERTY CXX_STANDARD_REQUIRED ON) | ||
8 | target_include_directories(assign_ids PUBLIC ${CMAKE_BINARY_DIR}) | ||
9 | target_link_libraries(assign_ids PUBLIC protos protobuf::libprotobuf) | ||