author | unc0rr |
Mon, 29 Mar 2010 13:58:21 +0000 | |
changeset 3156 | 947456599bc5 |
parent 2830 | 571a9deffeac |
child 3344 | b18a166e6ca4 |
permissions | -rw-r--r-- |
555 | 1 |
# Configure for Qt4 |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1374
diff
changeset
|
2 |
set(QT_MIN_VERSION "4.4.0") |
260 | 3 |
|
502
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
495
diff
changeset
|
4 |
set(QT_USE_QTCORE TRUE) |
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
495
diff
changeset
|
5 |
set(QT_USE_QTGUI TRUE) |
494 | 6 |
set(QT_USE_QTNETWORK TRUE) |
2525 | 7 |
set(QT_USE_QTSVG FALSE) |
2428 | 8 |
set(QT_USE_QTXML FALSE) |
9 |
set(QT_USE_QTOPENGL FALSE) |
|
494 | 10 |
set(QT_USE_QTMAIN TRUE) |
11 |
||
184 | 12 |
find_package(Qt4 REQUIRED) |
1159 | 13 |
include(${QT_USE_FILE}) |
184 | 14 |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
15 |
#find_package(QCA2 REQUIRED) |
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
16 |
#include_directories(${QCA2_INCLUDE_DIR}) |
1843 | 17 |
|
555 | 18 |
# Configure for SDL |
19 |
find_package(SDL REQUIRED) |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2443
diff
changeset
|
20 |
find_package(SDL_mixer REQUIRED) |
555 | 21 |
|
2239
d7b5c65f7544
move C and C++ optimization flags in the main CMakeLists.txt
koda
parents:
2230
diff
changeset
|
22 |
include_directories(.) |
707 | 23 |
include_directories(${SDL_INCLUDE_DIR}) |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2443
diff
changeset
|
24 |
include_directories(${SDLMIXER_INCLUDE_DIR}) |
1159 | 25 |
if(UNIX) |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
26 |
# HACK: in freebsd cannot find iconv.h included via SDL.h |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
27 |
include_directories("/usr/local/include") |
1159 | 28 |
endif(UNIX) |
555 | 29 |
|
1904 | 30 |
|
184 | 31 |
if(WIN32 AND NOT UNIX) |
32 |
set(HEDGEWARS_BINDIR ".") |
|
267 | 33 |
set(HEDGEWARS_DATADIR "../share/") |
2652 | 34 |
else() |
184 | 35 |
set(HEDGEWARS_BINDIR ${CMAKE_INSTALL_PREFIX}) |
266 | 36 |
if(DEFINED DATA_INSTALL_DIR) |
265 | 37 |
set(HEDGEWARS_DATADIR ${DATA_INSTALL_DIR}) |
2652 | 38 |
else() |
265 | 39 |
set(HEDGEWARS_DATADIR ${CMAKE_INSTALL_PREFIX}/share/) |
2652 | 40 |
endif() |
2663 | 41 |
endif() |
184 | 42 |
|
2239
d7b5c65f7544
move C and C++ optimization flags in the main CMakeLists.txt
koda
parents:
2230
diff
changeset
|
43 |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
2218
diff
changeset
|
44 |
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/hwconsts.cpp.in ${CMAKE_CURRENT_BINARY_DIR}/hwconsts.cpp) |
184 | 45 |
|
2641 | 46 |
set( hwfr_src |
184 | 47 |
game.cpp |
48 |
main.cpp |
|
781 | 49 |
hwform.cpp |
184 | 50 |
team.cpp |
1907 | 51 |
namegen.cpp |
184 | 52 |
teamselect.cpp |
53 |
teamselhelper.cpp |
|
54 |
frameTeam.cpp |
|
55 |
vertScrollArea.cpp |
|
56 |
gameuiconfig.cpp |
|
57 |
ui_hwform.cpp |
|
58 |
gamecfgwidget.cpp |
|
59 |
pages.cpp |
|
60 |
SquareLabel.cpp |
|
1236 | 61 |
hats.cpp |
184 | 62 |
hedgehogerWidget.cpp |
63 |
hwmap.cpp |
|
64 |
mapContainer.cpp |
|
187 | 65 |
tcpBase.cpp |
239 | 66 |
about.cpp |
297 | 67 |
proto.cpp |
314 | 68 |
fpsedit.cpp |
69 |
netserver.cpp |
|
412 | 70 |
newnetclient.cpp |
71 |
netudpserver.cpp |
|
461 | 72 |
netudpwidget.cpp |
633 | 73 |
netregister.cpp |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
74 |
netserverslist.cpp |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
502
diff
changeset
|
75 |
chatwidget.cpp |
555 | 76 |
binds.cpp |
579 | 77 |
SDLs.cpp |
78 |
playrecordpage.cpp |
|
781 | 79 |
${CMAKE_CURRENT_BINARY_DIR}/hwconsts.cpp |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
80 |
selectWeapon.cpp |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
81 |
itemNum.cpp |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
633
diff
changeset
|
82 |
input_ip.cpp |
1192 | 83 |
igbox.cpp |
1621 | 84 |
weaponItem.cpp |
85 |
statsPage.cpp |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
86 |
misc.cpp |
1881 | 87 |
ammoSchemeModel.cpp |
1932 | 88 |
togglebutton.cpp |
2012 | 89 |
bgwidget.cpp |
1621 | 90 |
) |
184 | 91 |
|
2821 | 92 |
#xfire integration |
93 |
if(WIN32) |
|
2830 | 94 |
set(hwfr_src ${hwfr_src} xfire.cpp ../misc/xfire/xfiregameclient.cpp) |
2821 | 95 |
endif(WIN32) |
96 |
||
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
97 |
if(MINGW) |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
98 |
# resource compilation for mingw |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
99 |
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/hedgewars_rc.o |
1574 | 100 |
COMMAND windres -I ${CMAKE_CURRENT_SOURCE_DIR} |
1039 | 101 |
-i ${CMAKE_CURRENT_SOURCE_DIR}/hedgewars.rc |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
102 |
-o ${CMAKE_CURRENT_BINARY_DIR}/hedgewars_rc.o) |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
103 |
set(hwfr_src ${hwfr_src} ${CMAKE_CURRENT_BINARY_DIR}/hedgewars_rc.o) |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
104 |
else(MINGW) |
1042 | 105 |
set(hwfr_src ${hwfr_src} hedgewars.rc) |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
106 |
endif(MINGW) |
184 | 107 |
|
2641 | 108 |
set( hwfr_moc_hdrs |
184 | 109 |
game.h |
1236 | 110 |
hats.h |
184 | 111 |
hwform.h |
112 |
teamselect.h |
|
113 |
teamselhelper.h |
|
114 |
frameTeam.h |
|
115 |
vertScrollArea.h |
|
116 |
gameuiconfig.h |
|
117 |
gamecfgwidget.h |
|
118 |
pages.h |
|
119 |
SquareLabel.h |
|
120 |
hedgehogerWidget.h |
|
121 |
hwmap.h |
|
122 |
mapContainer.h |
|
187 | 123 |
tcpBase.h |
208 | 124 |
about.h |
297 | 125 |
proto.h |
314 | 126 |
fpsedit.h |
127 |
netserver.h |
|
412 | 128 |
newnetclient.h |
129 |
netudpserver.h |
|
461 | 130 |
netudpwidget.h |
633 | 131 |
netregister.h |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
132 |
netserverslist.h |
555 | 133 |
chatwidget.h |
579 | 134 |
SDLs.h |
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
592
diff
changeset
|
135 |
playrecordpage.h |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
136 |
selectWeapon.h |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
137 |
itemNum.h |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
633
diff
changeset
|
138 |
input_ip.h |
1192 | 139 |
igbox.h |
1621 | 140 |
weaponItem.h |
141 |
statsPage.h |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
142 |
misc.h |
1881 | 143 |
ammoSchemeModel.h |
1932 | 144 |
togglebutton.h |
2012 | 145 |
bgwidget.h |
1621 | 146 |
) |
184 | 147 |
|
2641 | 148 |
set( hwfr_hdrs |
477 | 149 |
binds.h |
150 |
ui_hwform.h |
|
151 |
predefteams.h |
|
152 |
KB.h |
|
579 | 153 |
hwconsts.h |
2652 | 154 |
) |
184 | 155 |
|
2218
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
156 |
set(hwfr_rez hedgewars.qrc) |
184 | 157 |
|
2641 | 158 |
qt4_add_resources(hwfr_rez_src ${hwfr_rez}) |
184 | 159 |
|
2641 | 160 |
qt4_wrap_cpp(hwfr_moc_srcs ${hwfr_moc_hdrs}) |
184 | 161 |
|
2652 | 162 |
|
163 |
if(APPLE) |
|
164 |
set(hwfr_src ${hwfr_src} InstallController.cpp CocoaInitializer.mm M3Panel.mm M3InstallController.m NSWorkspace_RBAdditions.m) |
|
165 |
set(HW_LINK_LIBS IOKit) |
|
166 |
||
167 |
find_package(Sparkle) |
|
168 |
if(SPARKLE_FOUND) |
|
169 |
add_definitions(-DSPARKLE_ENABLED) |
|
170 |
set(hwfr_src ${hwfr_src} AutoUpdater.cpp SparkleAutoUpdater.mm) |
|
171 |
set(HW_LINK_LIBS ${SPARKLE_LIBRARY} ${HW_LINK_LIBS}) |
|
172 |
endif() |
|
173 |
endif() |
|
174 |
||
175 |
||
184 | 176 |
add_executable(hedgewars WIN32 |
177 |
${hwfr_src} |
|
178 |
${hwfr_moc_srcs} |
|
477 | 179 |
${hwfr_hdrs} |
2641 | 180 |
${hwfr_rez_src} |
181 |
) |
|
2191 | 182 |
|
2218
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
183 |
|
2652 | 184 |
set( HW_LINK_LIBS |
555 | 185 |
${QT_LIBRARIES} |
186 |
${SDL_LIBRARY} |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2443
diff
changeset
|
187 |
${SDLMIXER_LIBRARY} |
2652 | 188 |
${HW_LINK_LIBS} |
2641 | 189 |
) |
184 | 190 |
|
191 |
if(WIN32 AND NOT UNIX) |
|
555 | 192 |
if(NOT SDL_LIBRARY) |
2401 | 193 |
set(HW_LINK_LIBS ${HW_LINK_LIBS} SDL) |
2663 | 194 |
endif() |
555 | 195 |
|
2652 | 196 |
set( HW_LINK_LIBS |
495 | 197 |
${HW_LINK_LIBS} |
198 |
ole32 |
|
1043 | 199 |
oleaut32 |
495 | 200 |
winspool |
555 | 201 |
uuid |
202 |
) |
|
2663 | 203 |
endif() |
184 | 204 |
|
2218
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
205 |
|
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
206 |
target_link_libraries(hedgewars ${HW_LINK_LIBS}) |
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
207 |
|
495 | 208 |
|
2015 | 209 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hedgewars${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |
2218
59a9bebc4988
-Smaxx' solution for compiling frontend with static libs in windows
koda
parents:
2212
diff
changeset
|
210 |