diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 13:34:42 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 13:34:42 -0400 |
commit | e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 (patch) | |
tree | 432e1177f11e7e2b5e0d6400fad977def7d31129 /tools/datapacker/CMakeLists.txt | |
parent | 1eacf01378d4dff3aed73fffcc42e0352b93835e (diff) | |
download | lingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.tar.gz lingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.tar.bz2 lingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.zip |
Protobuf works! Parsing connections
Diffstat (limited to 'tools/datapacker/CMakeLists.txt')
-rw-r--r-- | tools/datapacker/CMakeLists.txt | 10 |
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 @@ | |||
1 | find_package(Protobuf REQUIRED) | ||
2 | |||
3 | add_executable(datapacker | ||
4 | main.cpp | ||
5 | container.cpp | ||
6 | ) | ||
7 | set_property(TARGET datapacker PROPERTY CXX_STANDARD 20) | ||
8 | set_property(TARGET datapacker PROPERTY CXX_STANDARD_REQUIRED ON) | ||
9 | target_include_directories(datapacker PUBLIC ${CMAKE_BINARY_DIR}) | ||
10 | target_link_libraries(datapacker PUBLIC protos protobuf::libprotobuf) | ||