From e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 7 Aug 2025 13:34:42 -0400 Subject: Protobuf works! Parsing connections --- CMakeLists.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f23152d..10025ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,6 @@ -find_package(Protobuf) +cmake_minimum_required(VERSION 3.28) -protobuf_generate( - LANGUAGE cpp - OUT_VAR CPP_PROTO_SRCS - PROTOC_OUT_DIR generated/cpp/proto - PROTOS proto/human.proto proto/data.proto -) +project(lingo2_archipelago) + +add_subdirectory(proto) +add_subdirectory(tools/datapacker) -- cgit 1.4.1