diff --git a/CMakeLists.txt b/CMakeLists.txt index ffd8f2f..14ead79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,13 +62,22 @@ if (UNLOCKER_DUMPER) set(CUE4PARSE_NATIVE_DIR "${cue4parse_SOURCE_DIR}/CUE4Parse-Natives") add_subdirectory(${CUE4PARSE_NATIVE_DIR}) + # net include_external_msproject( CUE4Parse-Net "${cue4parse_SOURCE_DIR}/CUE4Parse/CUE4Parse.csproj" TYPE "9A19103F-16F7-4668-BE54-9A1E7A4F7556" PLATFORM "Any CPU" - ) + ) add_dependencies(CUE4Parse-Net CUE4Parse-Natives) + + # conv + include_external_msproject( + CUE4Parse-Conversion + "${cue4parse_SOURCE_DIR}/CUE4Parse-Conversion/CUE4Parse-Conversion.csproj" + TYPE "9A19103F-16F7-4668-BE54-9A1E7A4F7556" + PLATFORM "Any CPU" + ) endif() set(SEALLIB_ASSERT ON CACHE BOOL "" FORCE) @@ -110,7 +119,7 @@ endif() # ------------------------------ if (UNLOCKER_DUMPER) include_external_msproject(hex-dumped "${CMAKE_CURRENT_SOURCE_DIR}/src/dumper/hex-dumped.csproj" TYPE "9A19103F-16F7-4668-BE54-9A1E7A4F7556") - add_dependencies(hex-dumped CUE4Parse-Net) + add_dependencies(hex-dumped CUE4Parse-Net CUE4Parse-Conversion) endif() # ------------------------------ diff --git a/src/dumper/hex-dumped.csproj b/src/dumper/hex-dumped.csproj index 1126a09..c6de154 100644 --- a/src/dumper/hex-dumped.csproj +++ b/src/dumper/hex-dumped.csproj @@ -23,8 +23,11 @@ - {E3464BCC-66F1-3FBA-B83E-B064C2637900} - BuildNatives=false;SkipNativeBuild=true;CMakeExitCode=0;Platform=AnyCPU + CMakeExitCode=0;Platform=AnyCPU + + + + CMakeExitCode=0;Platform=AnyCPU \ No newline at end of file