Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « boolop « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8e9c0c94d7eb1abf141368d92527dde1845499c (plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# ***** BEGIN GPL LICENSE BLOCK *****
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# The Original Code is Copyright (C) 2006, Blender Foundation
# All rights reserved.
#
# The Original Code is: all of this file.
#
# Contributor(s): Jacques Beaurain.
#
# ***** END GPL LICENSE BLOCK *****

remove_strict_flags()

set(INC	
	.
	extern
	intern
	../container
	../guardedalloc
	../memutil
	../moto/include
	../../source/blender/blenlib
	../../source/blender/makesdna
)

set(INC_SYS

)

if(NOT WITH_CARVE)
	set(SRC
		intern/BOP_BBox.cpp
		intern/BOP_BSPNode.cpp
		intern/BOP_BSPTree.cpp
		intern/BOP_Edge.cpp
		intern/BOP_Face.cpp
		intern/BOP_Face2Face.cpp
		intern/BOP_Interface.cpp
		intern/BOP_MathUtils.cpp
		intern/BOP_Merge.cpp
		intern/BOP_Merge2.cpp
		intern/BOP_Mesh.cpp
		intern/BOP_Segment.cpp
		intern/BOP_Splitter.cpp
		intern/BOP_Tag.cpp
		intern/BOP_Triangulator.cpp
		intern/BOP_Vertex.cpp

		extern/BOP_Interface.h
		intern/BOP_BBox.h
		intern/BOP_BSPNode.h
		intern/BOP_BSPTree.h
		intern/BOP_Chrono.h
		intern/BOP_Edge.h
		intern/BOP_Face.h
		intern/BOP_Face2Face.h
		intern/BOP_Indexs.h
		intern/BOP_MathUtils.h
		intern/BOP_Merge.h
		intern/BOP_Merge2.h
		intern/BOP_Mesh.h
		intern/BOP_Misc.h
		intern/BOP_Segment.h
		intern/BOP_Splitter.h
		intern/BOP_Tag.h
		intern/BOP_Triangulator.h
		intern/BOP_Vertex.h
	)
else()
	set(SRC
		intern/BOP_CarveInterface.cpp
		extern/BOP_Interface.h
	)

	list(APPEND INC
		../../extern/carve/include
	)

	if(WITH_BOOST)
		if(NOT MSVC)
			# Boost is setting as preferred collections library in the Carve code when using MSVC compiler
			add_definitions(
				-DHAVE_BOOST_UNORDERED_COLLECTIONS
			)
		endif()

		add_definitions(
			-DCARVE_SYSTEM_BOOST
		)

		list(APPEND INC
			${BOOST_INCLUDE_DIR}
		)
	endif()
endif()

blender_add_lib(bf_intern_bop "${SRC}" "${INC}" "${INC_SYS}")