From 60c6eb11109e3dbb2ebfe761b5d8d9cf76e8b22d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Sat, 4 Oct 2025 23:59:13 +0200 Subject: [PATCH] Fix wrapper include path. Took 5 minutes --- libs/protocol/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/protocol/CMakeLists.txt b/libs/protocol/CMakeLists.txt index bec89b127..aae330da2 100644 --- a/libs/protocol/CMakeLists.txt +++ b/libs/protocol/CMakeLists.txt @@ -13,5 +13,5 @@ target_link_libraries(cockatrice_protocol_wrapper # Expose the pb/ folder so consumers can do #include "pb/header.pb.h" target_include_directories(cockatrice_protocol_wrapper - PUBLIC ${CMAKE_BINARY_DIR} # points to the generated headers + PUBLIC ${CMAKE_CURRENT_BINARY_DIR} # points to the generated headers )