Clean up, clean out std::filesystem stuff.
This commit is contained in:
parent
2f0c066da4
commit
ad0fe99230
|
@ -67,16 +67,9 @@ if (WIN32)
|
||||||
if (NOT ZLIB_LIBRARIES)
|
if (NOT ZLIB_LIBRARIES)
|
||||||
message(FATAL_ERROR "Cannot find zlib.lib in the expected location.")
|
message(FATAL_ERROR "Cannot find zlib.lib in the expected location.")
|
||||||
endif()
|
endif()
|
||||||
elseif(CMAKE_COMPILER_IS_GNUCC)
|
else()
|
||||||
if(CMAKE_C_COMPILER_VERSION VERSION_LESS 8.0
|
|
||||||
OR CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0)
|
|
||||||
message(FATAL_ERROR "GCC 8.0 or greater is required to build this tool.")
|
|
||||||
endif()
|
|
||||||
find_package(LibXml2 REQUIRED)
|
find_package(LibXml2 REQUIRED)
|
||||||
find_package(ZLIB REQUIRED)
|
find_package(ZLIB REQUIRED)
|
||||||
else()
|
|
||||||
# CLANG can probably be made to work, issue is Mac OS X & default libstdc++
|
|
||||||
message(FATAL_ERROR "Only GCC is currently supported for Unix builds.")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# DRACO
|
# DRACO
|
||||||
|
@ -226,9 +219,6 @@ endif()
|
||||||
|
|
||||||
target_link_libraries(libFBX2glTF
|
target_link_libraries(libFBX2glTF
|
||||||
${FRAMEWORKS}
|
${FRAMEWORKS}
|
||||||
# CONAN_PKG::boost_filesystem
|
|
||||||
# CONAN_PKG::boost_optional
|
|
||||||
# CONAN_PKG::fmt
|
|
||||||
boost_filesystem::boost_filesystem
|
boost_filesystem::boost_filesystem
|
||||||
boost_optional::boost_optional
|
boost_optional::boost_optional
|
||||||
fmt::fmt
|
fmt::fmt
|
||||||
|
@ -264,9 +254,6 @@ target_include_directories(libFBX2glTF PUBLIC
|
||||||
boost_filesystem::boost_filesystem
|
boost_filesystem::boost_filesystem
|
||||||
boost_optional::boost_optional
|
boost_optional::boost_optional
|
||||||
fmt::fmt
|
fmt::fmt
|
||||||
# CONAN_PKG::boost_filesystem
|
|
||||||
# CONAN_PKG::boost_optional
|
|
||||||
# CONAN_PKG::fmt
|
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(libFBX2glTF SYSTEM PUBLIC
|
target_include_directories(libFBX2glTF SYSTEM PUBLIC
|
||||||
|
|
Loading…
Reference in New Issue