From c372fcb92d58fc5f4a380bb4854a68cb5f02b19d Mon Sep 17 00:00:00 2001 From: Diomendius <42310725+Diomendius@users.noreply.github.com> Date: Tue, 11 Jun 2024 01:06:27 +1200 Subject: [PATCH] Add bin2gp to CMake --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 722fe40..5ec3ded 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -303,5 +303,14 @@ target_include_directories(flattenmov PRIVATE ) target_link_libraries(flattenmov PortabilityLayer) +add_executable(bin2gp bin2gp/bin2gp.cpp AerofoilPortable/GpAllocator_C.cpp) +target_include_directories(bin2gp PRIVATE + Common + GpCommon + PortabilityLayer + AerofoilPortable + ) +target_link_libraries(bin2gp PortabilityLayer) + install (TARGETS ${EXECNAME})