From 1e4ee9335e60ee82c0cb373cd622747f0f7a0ba2 Mon Sep 17 00:00:00 2001 From: Diomendius <42310725+Diomendius@users.noreply.github.com> Date: Tue, 11 Jun 2024 01:02:48 +1200 Subject: [PATCH] Add flattenmov to CMake --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe0eafe..722fe40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -294,4 +294,14 @@ if(CMAKE_HOST_UNIX) endif() +add_executable(flattenmov flattenmov/flattenmov.cpp AerofoilPortable/GpAllocator_C.cpp) +target_include_directories(flattenmov PRIVATE + Common + GpCommon + PortabilityLayer + AerofoilPortable + ) +target_link_libraries(flattenmov PortabilityLayer) + + install (TARGETS ${EXECNAME})