UVAtlas/CMakeLists.txt

158 lines
6.1 KiB
CMake
Raw Normal View History

# UVAtlas Isochart Atlas Library
#
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
#
# http://go.microsoft.com/fwlink/?LinkID=512686
cmake_minimum_required (VERSION 3.11)
project (UVAtlas LANGUAGES CXX)
# #pragma omp is used to specify Directives and Clauses. If /openmp is not specified in a compilation, the compiler ignores OpenMP clauses and directives
add_compile_options($<$<CXX_COMPILER_ID:MSVC>:/openmp>)
2019-12-14 01:18:02 +00:00
option(BUILD_TOOLS "Build UVAtlasTool" ON)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/CMake")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/CMake")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/CMake")
add_library (${PROJECT_NAME} STATIC
UVAtlas/maxheap.hpp
UVAtlas/pch.h
UVAtlas/inc/UVAtlas.h
UVAtlas/geodesics/ApproximateOneToAll.cpp
UVAtlas/geodesics/ApproximateOneToAll.h
UVAtlas/geodesics/datatypes.h
UVAtlas/geodesics/ExactOneToAll.cpp
UVAtlas/geodesics/ExactOneToAll.h
UVAtlas/geodesics/mathutils.cpp
UVAtlas/geodesics/mathutils.h
UVAtlas/geodesics/minheap.hpp
UVAtlas/isochart/barycentricparam.cpp
UVAtlas/isochart/basemeshinfo.cpp
UVAtlas/isochart/basemeshinfo.h
UVAtlas/isochart/callbackschemer.h
UVAtlas/isochart/graphcut.cpp
UVAtlas/isochart/graphcut.h
UVAtlas/isochart/imtcomputation.cpp
UVAtlas/isochart/isochart.cpp
UVAtlas/isochart/isochart.h
UVAtlas/isochart/isochartconfig.h
UVAtlas/isochart/isochartengine.cpp
UVAtlas/isochart/isochartengine.h
UVAtlas/isochart/isochartmesh.cpp
UVAtlas/isochart/isochartmesh.h
UVAtlas/isochart/isochartutil.cpp
UVAtlas/isochart/isochartutil.h
UVAtlas/isochart/isomap.cpp
UVAtlas/isochart/isomap.h
UVAtlas/isochart/lscmparam.cpp
UVAtlas/isochart/mergecharts.cpp
UVAtlas/isochart/meshapplyisomap.cpp
UVAtlas/isochart/meshcommon.inl
UVAtlas/isochart/meshoptimizeboundaries.cpp
UVAtlas/isochart/meshoptimizestretch.cpp
UVAtlas/isochart/meshpartitionchart.cpp
UVAtlas/isochart/packingcharts.cpp
UVAtlas/isochart/progressivemesh.cpp
UVAtlas/isochart/progressivemesh.h
UVAtlas/isochart/sparsematrix.hpp
UVAtlas/isochart/SymmetricMatrix.hpp
UVAtlas/isochart/UVAtlas.cpp
UVAtlas/isochart/UVAtlasRepacker.cpp
UVAtlas/isochart/UVAtlasRepacker.h
UVAtlas/isochart/vertiter.cpp
UVAtlas/isochart/vertiter.h
UVAtlas/isochart/Vis_Maxflow.cpp
UVAtlas/isochart/Vis_Maxflow.h
)
source_group(inc REGULAR_EXPRESSION UVAtlas/inc/*.*)
source_group(geodesics REGULAR_EXPRESSION UVAtlas/geodesics/*.*)
source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
target_include_directories(${PROJECT_NAME} PUBLIC UVAtlas/inc)
target_include_directories(${PROJECT_NAME} PRIVATE UVAtlas UVAtlas/UVAtlas/geodesics UVAtlas/isochart)
2019-12-02 18:52:46 +00:00
if(MSVC)
# Use higher Warning Level
string(REPLACE "/W3 " "/W4 " CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
string(REPLACE "/W3 " "/W4 " CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
string(REPLACE "/W3 " "/W4 " CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE})
# Not using typeid or dynamic_cast, so disable RTTI to save binary size
string(REPLACE "/GR " "/GR- " CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
string(REPLACE "/GR " "/GR- " CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
string(REPLACE "/GR " "/GR- " CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE})
endif()
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/../DirectXMesh/CMakeLists.txt")
message(FATAL_ERROR "uvatalastool requires DirectXMesh library from http://go.microsoft.com/fwlink/?LinkID=324981" )
endif()
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/../DirectXTex/CMakeLists.txt")
message(FATAL_ERROR "uvatalastool requires DirectXTex library from http://go.microsoft.com/fwlink/?LinkId=248926" )
endif()
add_subdirectory(${CMAKE_SOURCE_DIR}/../DirectXMesh ${CMAKE_BINARY_DIR}/bin/CMake/DirectXMesh)
add_subdirectory(${CMAKE_SOURCE_DIR}/../DirectXTex ${CMAKE_BINARY_DIR}/bin/CMake/DirectXTex)
add_executable(uvatlastool
UVAtlasTool/UVAtlas.cpp
UVAtlasTool/Mesh.cpp
UVAtlasTool/Mesh.h
UVAtlasTool/MeshOBJ.cpp
UVAtlasTool/SDKMesh.h)
target_link_libraries(uvatlastool ${PROJECT_NAME} DirectXMesh DirectXTex)
target_include_directories(uvatlastool PRIVATE ../DirectXMesh/DirectXMesh ../DirectXMesh/Utilities ../DirectXTex/DirectXTex)
endif()
2019-12-02 18:52:46 +00:00
if(MSVC)
target_compile_options(${PROJECT_NAME} PRIVATE /fp:fast)
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
target_compile_options(uvatlastool PRIVATE /fp:fast)
endif()
2019-12-02 18:52:46 +00:00
if (${CMAKE_SIZEOF_VOID_P} EQUAL "4")
target_compile_options(${PROJECT_NAME} PRIVATE /arch:SSE2)
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
target_compile_options(uvatlastool PRIVATE /arch:SSE2)
endif()
2019-12-02 18:52:46 +00:00
endif()
endif()
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
set(WarningsLib "-Wpedantic" "-Wextra")
target_compile_options(${PROJECT_NAME} PRIVATE ${WarningsLib})
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
set(WarningsEXE ${WarningsLib} "-Wno-c++98-compat" "-Wno-c++98-compat-pedantic" "-Wno-exit-time-destructors" "-Wno-switch" "-Wno-switch-enum" "-Wno-language-extension-token" "-Wno-missing-prototypes")
target_compile_options(uvatlastool PRIVATE ${WarningsEXE})
endif()
endif()
if ( CMAKE_CXX_COMPILER_ID MATCHES "MSVC" )
target_compile_options(${PROJECT_NAME} PRIVATE /permissive- /JMC- /Zc:__cplusplus)
target_compile_options(uvatlastool PRIVATE /permissive- /Zc:__cplusplus)
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
set(WarningsEXE "/wd4365" "/wd4710" "/wd4820" "/wd5039" "/wd5045")
target_compile_options(uvatlastool PRIVATE ${WarningsEXE})
endif()
endif()
if(MSVC)
# We use Windows 7 here
target_compile_definitions(${PROJECT_NAME} PRIVATE _UNICODE UNICODE _WIN32_WINNT=0x0601)
2019-12-14 01:18:02 +00:00
if(BUILD_TOOLS MATCHES ON)
target_compile_definitions(uvatlastool PRIVATE _UNICODE UNICODE _WIN32_WINNT=0x0601)
endif()
endif()