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