summary refs log tree commit diff stats
path: root/tools/assign_ids/CMakeLists.txt
blob: bc89347c492c4d49174739c7855d7b0bd51ed951 (plain) (blame)
1
2
3
4
5
6
7
8
9
find_package(Protobuf REQUIRED)

add_executable(assign_ids
  main.cpp
)
set_property(TARGET assign_ids PROPERTY CXX_STANDARD 20)
set_property(TARGET assign_ids PROPERTY CXX_STANDARD_REQUIRED ON)
target_include_directories(assign_ids PUBLIC ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/tools)
target_link_libraries(assign_ids PUBLIC protos protobuf::libprotobuf util)