-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
72 lines (57 loc) · 2.98 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# MeshIO Copyright © 2019 Andy Maloney <[email protected]>
# SPDX-License-Identifier: BSD-3-Clause
option( PLUGIN-3rdParty_MESH_IO "Install the MeshIO plugin" OFF )
if ( PLUGIN-3rdParty_MESH_IO )
# assimp requires at least 3.22, so put it here so it's obivous where it's coming from
CMAKE_MINIMUM_REQUIRED( VERSION 3.22 )
project( MeshIO )
AddPlugin( NAME ${PROJECT_NAME} TYPE io )
target_compile_features( ${PROJECT_NAME}
PRIVATE
cxx_std_17
)
set_target_properties( ${PROJECT_NAME}
PROPERTIES
CXX_EXTENSIONS NO
EXPORT_COMPILE_COMMANDS ON
POSITION_INDEPENDENT_CODE ON
INTERPROCEDURAL_OPTIMIZATION ON
INTERPROCEDURAL_OPTIMIZATION_DEBUG OFF
)
include_directories( BEFORE extern/assimp/include )
add_subdirectory( include )
add_subdirectory( src )
# Turn off the assimp things we don't want
set( BUILD_SHARED_LIBS FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_ANDROID_JNIIOSYSTEM FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_ASSIMP_TOOLS FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_DOCS FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_DRACO FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_FRAMEWORK FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_NONFREE_C4D_IMPORTER FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_SAMPLES FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_TESTS FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_COVERALLS FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_DOUBLE_PRECISION FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_HUNTER_ENABLED FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_INSTALL FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_INSTALL_PDB FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_NO_EXPORT TRUE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_OPT_BUILD_PACKAGES TRUE CACHE INTERNAL "override ASSIMP flags" )
# Turn off all importers and exporters, then enable only the ones we want
set( ASSIMP_BUILD_ALL_IMPORTERS_BY_DEFAULT FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_ALL_EXPORTERS_BY_DEFAULT FALSE CACHE INTERNAL "override ASSIMP flags" )
set( ASSIMP_BUILD_COLLADA_IMPORTER TRUE CACHE INTERNAL "override ASSIMP flags" FORCE )
set( ASSIMP_BUILD_GLTF_IMPORTER TRUE CACHE INTERNAL "override ASSIMP flags" FORCE )
set( ASSIMP_BUILD_IFC_IMPORTER TRUE CACHE INTERNAL "override ASSIMP flags" FORCE )
# Linux needs zlib built with -fPIC, so build from source
if ( UNIX AND NOT APPLE )
set( ASSIMP_BUILD_ZLIB TRUE CACHE INTERNAL "override ASSIMP flags" )
endif()
add_subdirectory( extern/assimp EXCLUDE_FROM_ALL )
# See: https://github.com/asmaloney/MeshIO/issues/1
if ( AMD64 )
message( WARNING "The AMD64 option may cause link errors. If you run into link errors regarding 'inflate_fast', try turning this off." )
endif()
target_link_libraries( ${PROJECT_NAME} assimp )
endif()