forked from bradharding/doomretro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
86 lines (73 loc) · 2.9 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#
#========================================================================
#
# D O O M R e t r o
# The classic, refined DOOM source port. For Windows PC.
#
#========================================================================
#
# Copyright © 1993-2012 id Software LLC, a ZeniMax Media company.
# Copyright © 2013-2016 Brad Harding.
#
# DOOM Retro is a fork of Chocolate DOOM.
# For a list of credits, see <http://credits.doomretro.com>.
#
# This file is part of DOOM Retro.
#
# DOOM Retro 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 3 of the License, or (at your
# option) any later version.
#
# DOOM Retro 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 DOOM Retro. If not, see <https://www.gnu.org/licenses/>.
#
# DOOM is a registered trademark of id Software LLC, a ZeniMax Media
# company, in the US and/or other countries and is used without
# permission. All other trademarks are the property of their respective
# holders. DOOM Retro is in no way affiliated with nor endorsed by
# id Software.
#
#========================================================================
#
# Use this to build Doom Retro in Linux or OS X. Then run the executable.
CMAKE_MINIMUM_REQUIRED(VERSION 3.4)
PROJECT(doomretro C)
INCLUDE(GNUInstallDirs)
FILE(GLOB SOURCES ${CMAKE_SOURCE_DIR}/src/*.c)
IF (APPLE)
SET(OBJECTIVE_C_FILES
${CMAKE_SOURCE_DIR}/src/d_main.c
${CMAKE_SOURCE_DIR}/src/m_misc.c)
SET_SOURCE_FILES_PROPERTIES(${OBJECTIVE_C_FILES} COMPILE_FLAGS "-x objective-c")
ENDIF (APPLE)
ADD_EXECUTABLE(doomretro ${SOURCES})
SET_TARGET_PROPERTIES(doomretro PROPERTIES LINKER_LANGUAGE C)
INCLUDE(FindPkgConfig)
PKG_SEARCH_MODULE(SDL2 REQUIRED sdl2)
PKG_SEARCH_MODULE(SDL2_MIXER REQUIRED SDL2_mixer)
PKG_SEARCH_MODULE(SDL2_IMAGE REQUIRED SDL2_image)
INCLUDE_DIRECTORIES(${SDL2_INCLUDE_DIRS} ${SDL2_MIXER_INCLUDE_DIRS} ${SDL2_IMAGE_INCLUDE_DIRS})
IF (APPLE)
FIND_LIBRARY(COCOA_LIBRARY Cocoa)
ENDIF (APPLE)
TARGET_LINK_LIBRARIES(
doomretro
${SDL2_LIBRARIES}
${SDL2_MIXER_LIBRARIES}
${SDL2_IMAGE_LIBRARIES}
${COCOA_LIBRARY}
m
)
FILE(GLOB RESOURCES LIST_DIRECTORIES false ${CMAKE_SOURCE_DIR}/res/*)
FILE(COPY ${RESOURCES} DESTINATION ${CMAKE_BINARY_DIR})
FILE(GLOB BREACH LIST_DIRECTORIES false ${CMAKE_SOURCE_DIR}/res/breach/*)
FILE(COPY ${BREACH} DESTINATION ${CMAKE_BINARY_DIR}/breach)
INSTALL(TARGETS doomretro DESTINATION ${CMAKE_INSTALL_BINDIR})
INSTALL(FILES ${RESOURCES} DESTINATION ${CMAKE_INSTALL_DATADIR}/doomretro)
INSTALL(FILES ${BREACH} DESTINATION ${CMAKE_INSTALL_DATADIR}/doomretro/breach)