summary refs log tree commit diff stats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-07 13:34:42 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-07 13:34:42 -0400
commite9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 (patch)
tree432e1177f11e7e2b5e0d6400fad977def7d31129 /CMakeLists.txt
parent1eacf01378d4dff3aed73fffcc42e0352b93835e (diff)
downloadlingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.tar.gz
lingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.tar.bz2
lingo2-archipelago-e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0.zip
Protobuf works! Parsing connections
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt12
1 files changed, 5 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f23152d..10025ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,8 +1,6 @@
1find_package(Protobuf) 1cmake_minimum_required(VERSION 3.28)
2 2
3protobuf_generate( 3project(lingo2_archipelago)
4 LANGUAGE cpp 4
5 OUT_VAR CPP_PROTO_SRCS 5add_subdirectory(proto)
6 PROTOC_OUT_DIR generated/cpp/proto 6add_subdirectory(tools/datapacker)
7 PROTOS proto/human.proto proto/data.proto
8)