From 77fcc35726685e3fc0aa251d9f5eb2494ca29df7 Mon Sep 17 00:00:00 2001 From: Diomendius <42310725+Diomendius@users.noreply.github.com> Date: Sun, 16 Jun 2024 15:59:16 +1200 Subject: [PATCH] Add FTagData to CMake, port to *nix --- CMakeLists.txt | 10 ++++++++++ FTagData/FTagData.cpp | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4df28c0..077d585 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -363,5 +363,15 @@ add_executable(MakeTimestamp MakeTimestamp/MakeTimestamp.cpp) target_include_directories(MakeTimestamp PRIVATE PortabilityLayer) target_link_libraries(MakeTimestamp PortabilityLayer) +add_executable(FTagData FTagData/FTagData.cpp WindowsUnicodeToolShim/UnixUnicodeToolShim.cpp) +target_include_directories(FTagData PRIVATE + Common + GpCommon + PortabilityLayer + AerofoilPortable + WindowsUnicodeToolShim + ) +target_link_libraries(FTagData PortabilityLayer) + install (TARGETS ${EXECNAME}) diff --git a/FTagData/FTagData.cpp b/FTagData/FTagData.cpp index c0337df..77a7e0c 100644 --- a/FTagData/FTagData.cpp +++ b/FTagData/FTagData.cpp @@ -1,6 +1,6 @@ #include #include -#include + #include "MacFileInfo.h" #include "CFileStream.h" #include "CombinedTimestamp.h"