mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
Add FTagData to CMake, port to *nix
This commit is contained in:
@@ -353,5 +353,15 @@ add_executable(MakeTimestamp MakeTimestamp/MakeTimestamp.cpp)
|
||||
target_include_directories(MakeTimestamp PRIVATE PortabilityLayer UnixCompat)
|
||||
target_link_libraries(MakeTimestamp PortabilityLayer)
|
||||
|
||||
add_executable(FTagData FTagData/FTagData.cpp)
|
||||
target_include_directories(FTagData PRIVATE
|
||||
Common
|
||||
GpCommon
|
||||
PortabilityLayer
|
||||
AerofoilPortable
|
||||
UnixCompat
|
||||
)
|
||||
target_link_libraries(FTagData PortabilityLayer)
|
||||
|
||||
|
||||
install (TARGETS ${EXECNAME})
|
||||
|
@@ -1,11 +1,17 @@
|
||||
#include <stdio.h>
|
||||
#include <string>
|
||||
#include <Windows.h>
|
||||
|
||||
#include "MacFileInfo.h"
|
||||
#include "CFileStream.h"
|
||||
#include "CombinedTimestamp.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <Windows.h>
|
||||
|
||||
#include "WindowsUnicodeToolShim.h"
|
||||
#else
|
||||
#include "UnixCompat.h"
|
||||
#endif
|
||||
|
||||
int toolMain(int argc, const char **argv)
|
||||
{
|
||||
|
Reference in New Issue
Block a user