diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
| commit | c0c5431800d0306d01814e9902566c9b4fc9220b (patch) | |
| tree | 50d206c31bb7f535c3f2ca0b8d0f735c5a61f9a5 /tools/assign_ids/CMakeLists.txt | |
| parent | c9da387ede51f207825b63d9f13036a7b661d4b3 (diff) | |
| download | lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.tar.gz lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.tar.bz2 lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.zip | |
Assign AP IDs to doors and panels
Diffstat (limited to 'tools/assign_ids/CMakeLists.txt')
| -rw-r--r-- | tools/assign_ids/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
| diff --git a/tools/assign_ids/CMakeLists.txt b/tools/assign_ids/CMakeLists.txt new file mode 100644 index 0000000..0a9f62d --- /dev/null +++ b/tools/assign_ids/CMakeLists.txt | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | find_package(Protobuf REQUIRED) | ||
| 2 | |||
| 3 | add_executable(assign_ids | ||
| 4 | main.cpp | ||
| 5 | ) | ||
| 6 | set_property(TARGET assign_ids PROPERTY CXX_STANDARD 20) | ||
| 7 | set_property(TARGET assign_ids PROPERTY CXX_STANDARD_REQUIRED ON) | ||
| 8 | target_include_directories(assign_ids PUBLIC ${CMAKE_BINARY_DIR}) | ||
| 9 | target_link_libraries(assign_ids PUBLIC protos protobuf::libprotobuf) | ||
