From f27860776b184b6b16f9f2e24bb927cbc8f8d8b0 Mon Sep 17 00:00:00 2001 From: Diomendius <42310725+Diomendius@users.noreply.github.com> Date: Sun, 16 Jun 2024 16:02:09 +1200 Subject: [PATCH] Add MergeGPF to CMake --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 077d585..13565d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -373,5 +373,19 @@ target_include_directories(FTagData PRIVATE ) target_link_libraries(FTagData PortabilityLayer) +add_executable(MergeGPF + MergeGPF/MergeGPF.cpp + AerofoilPortable/GpAllocator_C.cpp + WindowsUnicodeToolShim/UnixUnicodeToolShim.cpp + ) +target_include_directories(MergeGPF PRIVATE + Common + GpCommon + PortabilityLayer + AerofoilPortable + WindowsUnicodeToolShim + ) +target_link_libraries(MergeGPF PortabilityLayer) + install (TARGETS ${EXECNAME})