blob: 2e28420a827e0ffb2b37f7fd190ab9b44b7669d3 (
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
|
include("${CMAKE_SOURCE_DIR}/cmake/SDL2.cmake")
find_package(OpenGL)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/../jpeg-8c
${CMAKE_CURRENT_SOURCE_DIR}/../renderercommon
${SDL2_INCLUDE_DIRS}
)
set(renderergl1_SRCS
tr_animation.cpp
tr_backend.cpp
tr_bsp.cpp
tr_cmds.cpp
tr_curve.cpp
tr_flares.cpp
tr_image.cpp
tr_init.cpp
tr_light.cpp
tr_local.h
tr_main.cpp
tr_marks.cpp
tr_mesh.cpp
tr_model.cpp
tr_model_iqm.cpp
tr_scene.cpp
tr_shade.cpp
tr_shade_calc.cpp
tr_shader.cpp
tr_shadows.cpp
tr_sky.cpp
tr_subs.cpp
tr_surface.cpp
tr_world.cpp
tr_local.h
${CMAKE_SOURCE_DIR}/src/common/puff.cpp
${CMAKE_SOURCE_DIR}/src/common/q_shared.c
${CMAKE_SOURCE_DIR}/src/common/q_math.c
)
if(NOT USE_RENDERER_DLOPEN)
add_library(
renderergl1 STATIC
${renderergl1_SRCS}
)
target_link_libraries(
renderergl1 renderercommon
${SDL2_LIBRARIES}
)
else(NOT USE_RENDERER_DLOPEN)
add_library(
renderergl1 SHARED
${renderergl1_SRCS}
)
target_link_libraries(
renderergl1
renderercommon
${FRAMEWORKS}
${OPENGL_LIBRARIES}
${SDL2_LIBRARIES}
)
endif(NOT USE_RENDERER_DLOPEN)
|