Skip to content

Latest commit

 

History

History
259 lines (233 loc) · 9.2 KB

CMakeLists.txt

File metadata and controls

259 lines (233 loc) · 9.2 KB
 
Feb 28, 2009
Feb 28, 2009
1
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
Mar 22, 2008
Mar 22, 2008
2
PROJECT(MojoShader)
Mar 28, 2008
Mar 28, 2008
3
Jan 1, 2016
Jan 1, 2016
4
5
6
7
OPTION(BUILD_SHARED "Build MojoShader as a shared library" OFF)
OPTION(PROFILE_D3D "Build MojoShader with support for the D3D profile" ON)
OPTION(PROFILE_BYTECODE "Build MojoShader with support for the BYTECODE profile" ON)
OPTION(PROFILE_GLSL120 "Build MojoShader with support for the GLSL120 profile" ON)
Apr 7, 2019
Apr 7, 2019
8
OPTION(PROFILE_GLSLES "Build MojoShader with support for the GLSLES profile" ON)
Jan 1, 2016
Jan 1, 2016
9
10
11
OPTION(PROFILE_GLSL "Build MojoShader with support for the GLSL profile" ON)
OPTION(PROFILE_ARB1 "Build MojoShader with support for the ARB1 profile" ON)
OPTION(PROFILE_ARB1_NV "Build MojoShader with support for the ARB1_NV profile" ON)
May 29, 2016
May 29, 2016
12
OPTION(PROFILE_METAL "Build MojoShader with support for the Metal profile" ON)
Dec 31, 2019
Dec 31, 2019
13
OPTION(PROFILE_SPIRV "Build MojoShader with support for the SPIR-V profile" ON)
May 28, 2016
May 28, 2016
14
OPTION(EFFECT_SUPPORT "Build MojoShader with support for Effect framework files" ON)
Apr 27, 2019
Apr 27, 2019
15
OPTION(COMPILER_SUPPORT "Build MojoShader with support for HLSL source files" OFF)
Jan 1, 2016
Jan 1, 2016
16
17
18
19
OPTION(FLIP_VIEWPORT "Build MojoShader with the ability to flip the GL viewport" OFF)
OPTION(DEPTH_CLIPPING "Build MojoShader with the ability to simulate [0, 1] depth clipping" OFF)
OPTION(XNA4_VERTEXTEXTURE "Build MojoShader with XNA4 vertex texturing behavior" OFF)
Feb 12, 2009
Feb 12, 2009
20
21
INCLUDE_DIRECTORIES(.)
Feb 19, 2019
Feb 19, 2019
22
# If Mercurial is installed and we are in a mercurial repository, include the rev# and changeset as version information.
Feb 12, 2009
Feb 12, 2009
23
24
25
26
27
28
29
FIND_PROGRAM(HG hg DOC "Path to hg command line app: http://www.selenic.com/mercurial/")
IF(NOT HG)
MESSAGE(STATUS "Mercurial (hg) not found. You can go on, but version info will be wrong.")
SET(MOJOSHADER_VERSION -1)
SET(MOJOSHADER_CHANGESET "???")
ELSE(NOT HG)
MARK_AS_ADVANCED(HG)
Feb 19, 2019
Feb 19, 2019
30
31
# See if we are in an hg repository.
Feb 12, 2009
Feb 12, 2009
32
EXECUTE_PROCESS(
Feb 19, 2019
Feb 19, 2019
33
COMMAND hg root
Feb 12, 2009
Feb 12, 2009
34
35
36
37
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
RESULT_VARIABLE HGVERSION_RC
ERROR_QUIET
)
Feb 19, 2019
Feb 19, 2019
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
IF(NOT HGVERSION_RC EQUAL 0)
MESSAGE(STATUS "Mercurial (hg) repository not found. You can go on, but version info will be wrong.")
SET(MOJOSHADER_VERSION -1)
SET(MOJOSHADER_CHANGESET "???")
ELSE(NOT HGVERSION_RC EQUAL 0)
# Query the rev and changeset.
EXECUTE_PROCESS(
COMMAND hg tip --template {rev}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
RESULT_VARIABLE HGVERSION_RC
OUTPUT_VARIABLE MOJOSHADER_VERSION
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
EXECUTE_PROCESS(
COMMAND hg tip --template hg-{rev}:{node|short}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
RESULT_VARIABLE HGVERSION_RC
OUTPUT_VARIABLE MOJOSHADER_CHANGESET
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
ENDIF(NOT HGVERSION_RC EQUAL 0)
Feb 12, 2009
Feb 12, 2009
61
ENDIF(NOT HG)
Nov 6, 2008
Nov 6, 2008
62
63
64
65
66
67
68
69
70
71
72
WRITE_FILE(
"${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_version.h"
"/* This file was autogenerated. Do not edit! */\n"
"#ifndef _INCL_MOJOSHADER_VERSION_H_\n"
"#define _INCL_MOJOSHADER_VERSION_H_\n"
"#define MOJOSHADER_VERSION ${MOJOSHADER_VERSION}\n"
"#define MOJOSHADER_CHANGESET \"${MOJOSHADER_CHANGESET}\"\n"
"#endif\n"
)
Mar 28, 2008
Mar 28, 2008
73
74
75
76
IF(CMAKE_COMPILER_IS_GNUCC)
ADD_DEFINITIONS(-Wall -ggdb3)
ENDIF(CMAKE_COMPILER_IS_GNUCC)
Mar 28, 2008
Mar 28, 2008
77
78
# testparse uses this when I'm looking at memory usage patterns.
#ADD_DEFINITIONS(-DMOJOSHADER_DEBUG_MALLOC=1)
Mar 28, 2008
Mar 28, 2008
79
Apr 30, 2008
Apr 30, 2008
80
81
82
83
84
IF(MSVC)
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS=1)
ADD_DEFINITIONS(-TP) # force .c files to compile as C++.
ENDIF(MSVC)
Feb 28, 2009
Feb 28, 2009
85
# We build lemon, then use it to generate parser C code.
May 17, 2018
May 17, 2018
86
87
88
89
90
91
92
93
94
95
96
IF(COMPILER_SUPPORT)
ADD_EXECUTABLE(lemon "misc/lemon.c")
GET_TARGET_PROPERTY(LEMON lemon LOCATION)
ADD_CUSTOM_COMMAND(
OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_parser_hlsl.h"
MAIN_DEPENDENCY "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_parser_hlsl.lemon"
DEPENDS lemon "${CMAKE_CURRENT_SOURCE_DIR}/misc/lempar.c"
COMMAND "${LEMON}"
ARGS -q "-T${CMAKE_CURRENT_SOURCE_DIR}/misc/lempar.c" "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_parser_hlsl.lemon"
)
ENDIF(COMPILER_SUPPORT)
Feb 28, 2009
Feb 28, 2009
97
Jan 1, 2016
Jan 1, 2016
98
IF(APPLE)
Feb 19, 2019
Feb 19, 2019
99
100
101
IF(NOT IOS)
find_library(CARBON_FRAMEWORK Carbon) # Stupid Gestalt.
ENDIF(NOT IOS)
Jan 1, 2016
Jan 1, 2016
102
103
104
105
106
107
108
109
110
111
112
ENDIF(APPLE)
IF(NOT PROFILE_D3D)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_D3D=0)
ENDIF(NOT PROFILE_D3D)
IF(NOT PROFILE_BYTECODE)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_BYTECODE=0)
ENDIF(NOT PROFILE_BYTECODE)
IF(NOT PROFILE_GLSL120)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_GLSL120=0)
ENDIF(NOT PROFILE_GLSL120)
Apr 7, 2019
Apr 7, 2019
113
114
115
IF(NOT PROFILE_GLSLES)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_GLSLES=0)
ENDIF(NOT PROFILE_GLSLES)
Jan 1, 2016
Jan 1, 2016
116
117
118
119
120
121
122
123
124
IF(NOT PROFILE_GLSL)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_GLSL=0)
ENDIF(NOT PROFILE_GLSL)
IF(NOT PROFILE_ARB1)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_ARB1=0)
ENDIF(NOT PROFILE_ARB1)
IF(NOT PROFILE_ARB1_NV)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_ARB1_NV=0)
ENDIF(NOT PROFILE_ARB1_NV)
May 29, 2016
May 29, 2016
125
126
IF(NOT PROFILE_METAL)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_METAL=0)
May 17, 2018
May 17, 2018
127
ENDIF(NOT PROFILE_METAL)
Dec 31, 2019
Dec 31, 2019
128
129
130
IF(NOT PROFILE_SPIRV)
ADD_DEFINITIONS(-DSUPPORT_PROFILE_SPIRV=0)
ENDIF(NOT PROFILE_SPIRV)
Jan 1, 2016
Jan 1, 2016
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
IF(EFFECT_SUPPORT)
IF(UNIX)
SET(LIBM -lm)
ENDIF(UNIX)
ADD_DEFINITIONS(-DMOJOSHADER_EFFECT_SUPPORT)
ENDIF(EFFECT_SUPPORT)
IF(FLIP_VIEWPORT)
ADD_DEFINITIONS(-DMOJOSHADER_FLIP_RENDERTARGET)
ENDIF(FLIP_VIEWPORT)
IF(DEPTH_CLIPPING)
ADD_DEFINITIONS(-DMOJOSHADER_DEPTH_CLIPPING)
ENDIF(DEPTH_CLIPPING)
IF(XNA4_VERTEXTEXTURE)
ADD_DEFINITIONS(-DMOJOSHADER_XNA4_VERTEX_TEXTURES)
ENDIF(XNA4_VERTEXTEXTURE)
IF(BUILD_SHARED)
SET(LIBRARY_FORMAT SHARED)
ELSE(BUILD_SHARED)
SET(LIBRARY_FORMAT STATIC)
ENDIF(BUILD_SHARED)
ADD_LIBRARY(mojoshader ${LIBRARY_FORMAT}
Dec 5, 2008
Dec 5, 2008
158
mojoshader.c
Apr 5, 2009
Apr 5, 2009
159
mojoshader_common.c
Dec 5, 2008
Dec 5, 2008
160
mojoshader_opengl.c
Apr 23, 2019
Apr 23, 2019
161
162
163
164
165
profiles/mojoshader_profile_arb1.c
profiles/mojoshader_profile_bytecode.c
profiles/mojoshader_profile_d3d.c
profiles/mojoshader_profile_glsl.c
profiles/mojoshader_profile_metal.c
Dec 31, 2019
Dec 31, 2019
166
profiles/mojoshader_profile_spirv.c
Apr 23, 2019
Apr 23, 2019
167
profiles/mojoshader_profile_common.c
Dec 5, 2008
Dec 5, 2008
168
)
May 17, 2018
May 17, 2018
169
170
171
172
173
174
175
176
177
178
179
180
181
IF(EFFECT_SUPPORT)
TARGET_SOURCES(mojoshader PRIVATE
mojoshader_effects.c
)
ENDIF(EFFECT_SUPPORT)
IF(COMPILER_SUPPORT)
TARGET_SOURCES(mojoshader PRIVATE
mojoshader_compiler.c
mojoshader_preprocessor.c
mojoshader_lexer.c
mojoshader_assembler.c
)
ENDIF(COMPILER_SUPPORT)
Jan 1, 2016
Jan 1, 2016
182
183
184
IF(BUILD_SHARED)
TARGET_LINK_LIBRARIES(mojoshader ${LIBM} ${CARBON_FRAMEWORK})
ENDIF(BUILD_SHARED)
May 31, 2011
May 31, 2011
185
Feb 28, 2009
Feb 28, 2009
186
187
SET_SOURCE_FILES_PROPERTIES(
mojoshader_compiler.c
Feb 28, 2009
Feb 28, 2009
188
PROPERTIES OBJECT_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_parser_hlsl.h"
Feb 28, 2009
Feb 28, 2009
189
190
)
Feb 12, 2009
Feb 12, 2009
191
192
193
194
195
196
FIND_PROGRAM(RE2C re2c DOC "Path to re2c command line app: http://re2c.org/")
IF(NOT RE2C)
MESSAGE(STATUS "re2c missing. You can go on, but can't rebuild the lexer.")
ELSE(NOT RE2C)
MARK_AS_ADVANCED(RE2C)
ADD_CUSTOM_COMMAND(
Feb 28, 2009
Feb 28, 2009
197
OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.c"
Feb 12, 2009
Feb 12, 2009
198
DEPENDS mojoshader_lexer.re
Feb 28, 2009
Feb 28, 2009
199
200
COMMAND "${RE2C}"
ARGS -is --no-generation-date -o "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.c" "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.re"
Feb 12, 2009
Feb 12, 2009
201
202
)
ENDIF(NOT RE2C)
Feb 11, 2009
Feb 11, 2009
203
Feb 21, 2014
Feb 21, 2014
204
205
206
207
find_path(SDL2_INCLUDE_DIR SDL.h PATH_SUFFIXES include/SDL2)
find_library(SDL2 NAMES SDL2 PATH_SUFFIXES lib)
IF(SDL2)
INCLUDE_DIRECTORIES(${SDL2_INCLUDE_DIR})
Feb 12, 2009
Feb 12, 2009
208
ADD_EXECUTABLE(glcaps utils/glcaps.c)
Feb 21, 2014
Feb 21, 2014
209
TARGET_LINK_LIBRARIES(glcaps ${SDL2} ${LIBM} ${CARBON_FRAMEWORK})
Feb 12, 2009
Feb 12, 2009
210
ADD_EXECUTABLE(bestprofile utils/bestprofile.c)
Feb 21, 2014
Feb 21, 2014
211
TARGET_LINK_LIBRARIES(bestprofile mojoshader ${SDL2} ${LIBM} ${CARBON_FRAMEWORK})
Feb 12, 2009
Feb 12, 2009
212
ADD_EXECUTABLE(availableprofiles utils/availableprofiles.c)
Feb 21, 2014
Feb 21, 2014
213
214
TARGET_LINK_LIBRARIES(availableprofiles mojoshader ${SDL2} ${LIBM} ${CARBON_FRAMEWORK})
ENDIF(SDL2)
Apr 22, 2008
Apr 22, 2008
215
May 17, 2018
May 17, 2018
216
217
218
219
220
221
222
223
224
225
IF(COMPILER_SUPPORT)
ADD_EXECUTABLE(finderrors utils/finderrors.c)
TARGET_LINK_LIBRARIES(finderrors mojoshader ${SDL2} ${LIBM} ${CARBON_FRAMEWORK})
IF(SDL2)
SET_SOURCE_FILES_PROPERTIES(
utils/finderrors.c
PROPERTIES COMPILE_FLAGS "-DFINDERRORS_COMPILE_SHADERS=1"
)
ENDIF(SDL2)
ENDIF(COMPILER_SUPPORT)
Feb 28, 2009
Feb 28, 2009
226
Dec 31, 2019
Dec 31, 2019
227
228
229
230
231
232
233
FIND_PATH(SPIRV_TOOLS_INCLUDE_DIR "spirv-tools/libspirv.h" PATH_SUFFIXES "include")
FIND_LIBRARY(SPIRV_TOOLS_LIBRARY NAMES SPIRV-Tools-shared)
IF(SPIRV_TOOLS_INCLUDE_DIR AND SPIRV_TOOLS_LIBRARY)
INCLUDE_DIRECTORIES(${SPIRV_TOOLS_INCLUDE_DIR})
ADD_DEFINITIONS(-DMOJOSHADER_HAS_SPIRV_TOOLS)
ENDIF(SPIRV_TOOLS_INCLUDE_DIR AND SPIRV_TOOLS_LIBRARY)
Feb 12, 2009
Feb 12, 2009
234
ADD_EXECUTABLE(testparse utils/testparse.c)
Feb 21, 2014
Feb 21, 2014
235
TARGET_LINK_LIBRARIES(testparse mojoshader ${LIBM} ${CARBON_FRAMEWORK})
Dec 31, 2019
Dec 31, 2019
236
237
238
IF(SPIRV_TOOLS_INCLUDE_DIR AND SPIRV_TOOLS_LIBRARY)
TARGET_LINK_LIBRARIES(testparse ${SPIRV_TOOLS_LIBRARY})
ENDIF(SPIRV_TOOLS_INCLUDE_DIR AND SPIRV_TOOLS_LIBRARY)
Feb 12, 2009
Feb 12, 2009
239
ADD_EXECUTABLE(testoutput utils/testoutput.c)
Feb 21, 2014
Feb 21, 2014
240
TARGET_LINK_LIBRARIES(testoutput mojoshader ${LIBM} ${CARBON_FRAMEWORK})
May 17, 2018
May 17, 2018
241
242
243
244
IF(COMPILER_SUPPORT)
ADD_EXECUTABLE(mojoshader-compiler utils/mojoshader-compiler.c)
TARGET_LINK_LIBRARIES(mojoshader-compiler mojoshader ${LIBM} ${CARBON_FRAMEWORK})
ENDIF(COMPILER_SUPPORT)
Feb 9, 2008
Feb 9, 2008
245
Apr 9, 2009
Apr 9, 2009
246
# Unit tests...
May 17, 2018
May 17, 2018
247
248
249
250
251
252
253
254
255
256
IF(COMPILER_SUPPORT)
ADD_CUSTOM_TARGET(
test
COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/unit_tests/run_tests.pl"
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
DEPENDS mojoshader-compiler
COMMENT "Running unit tests..."
VERBATIM
)
ENDIF(COMPILER_SUPPORT)
Apr 9, 2009
Apr 9, 2009
257
Feb 9, 2008
Feb 9, 2008
258
# End of CMakeLists.txt ...