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