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