author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 28 May 2008 09:49:53 -0400 | |
branch | trunk |
changeset 333 | 2b36a1d72fa1 |
parent 328 | 6ea15911de70 |
child 390 | 4effa7e6b49c |
permissions | -rw-r--r-- |
35 | 1 |
CMAKE_MINIMUM_REQUIRED(VERSION 2.4) |
2 |
PROJECT(MojoShader) |
|
48 | 3 |
|
4 |
IF(CMAKE_COMPILER_IS_GNUCC) |
|
5 |
ADD_DEFINITIONS(-Wall -ggdb3) |
|
6 |
ENDIF(CMAKE_COMPILER_IS_GNUCC) |
|
7 |
||
52 | 8 |
# testparse uses this when I'm looking at memory usage patterns. |
9 |
#ADD_DEFINITIONS(-DMOJOSHADER_DEBUG_MALLOC=1) |
|
48 | 10 |
|
254 | 11 |
IF(MSVC) |
12 |
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS=1) |
|
13 |
ADD_DEFINITIONS(-TP) # force .c files to compile as C++. |
|
14 |
ENDIF(MSVC) |
|
15 |
||
333
2b36a1d72fa1
Wrote most of the arb1 OpenGL glue code.
Ryan C. Gordon <icculus@icculus.org>
parents:
328
diff
changeset
|
16 |
FIND_PACKAGE(SDL) |
169
7e9d90724cf8
Push parsed shaders through GLSL compiler to see what breaks.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
17 |
IF(SDL_FOUND) |
7e9d90724cf8
Push parsed shaders through GLSL compiler to see what breaks.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
18 |
INCLUDE_DIRECTORIES(${SDL_INCLUDE_DIR}) |
7e9d90724cf8
Push parsed shaders through GLSL compiler to see what breaks.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
19 |
ADD_DEFINITIONS(-DFINDERRORS_COMPILE_SHADERS=1) |
269 | 20 |
ADD_EXECUTABLE(glcaps glcaps.c) |
21 |
TARGET_LINK_LIBRARIES(glcaps ${SDL_LIBRARY}) |
|
169
7e9d90724cf8
Push parsed shaders through GLSL compiler to see what breaks.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
22 |
ENDIF(SDL_FOUND) |
7e9d90724cf8
Push parsed shaders through GLSL compiler to see what breaks.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
23 |
|
35 | 24 |
ADD_EXECUTABLE(testparse testparse.c mojoshader.c) |
333
2b36a1d72fa1
Wrote most of the arb1 OpenGL glue code.
Ryan C. Gordon <icculus@icculus.org>
parents:
328
diff
changeset
|
25 |
ADD_EXECUTABLE(finderrors finderrors.c mojoshader.c mojoshader_opengl.c) |
171
4bf769d41b01
Updatged CMakeLists.txt to remove pthread reference.
Ryan C. Gordon <icculus@icculus.org>
parents:
169
diff
changeset
|
26 |
TARGET_LINK_LIBRARIES(finderrors ${SDL_LIBRARY} ${EXTRA_LIBS}) |
1 | 27 |
|
28 |
# End of CMakeLists.txt ... |
|
29 |