Fix wrapper include path.

Took 5 minutes
This commit is contained in:
Lukas Brübach 2025-10-04 23:59:13 +02:00
parent 4881e084a8
commit 60c6eb1110

View file

@ -13,5 +13,5 @@ target_link_libraries(cockatrice_protocol_wrapper
# Expose the pb/ folder so consumers can do #include "pb/header.pb.h" # Expose the pb/ folder so consumers can do #include "pb/header.pb.h"
target_include_directories(cockatrice_protocol_wrapper 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
) )