author | nemo |
Sun, 28 Jun 2009 14:37:26 +0000 | |
changeset 2200 | 8192be6e3aef |
parent 2191 | 20c62f787a4d |
child 2203 | 6bd39d75e0dd |
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) |
7 |
set(QT_USE_QTSVG TRUE) |
|
495 | 8 |
set(QT_USE_QTXML TRUE) |
2012 | 9 |
# set(QT_USE_QTOPENGL TRUE) |
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) |
|
20 |
||
707 | 21 |
include_directories(${SDL_INCLUDE_DIR}) |
2191 | 22 |
|
1159 | 23 |
if(UNIX) |
24 |
include_directories("/usr/local/include") # HACK: in freebsd cannot find iconv.h included via SDL.h |
|
25 |
endif(UNIX) |
|
555 | 26 |
|
27 |
# Done |
|
494 | 28 |
include_directories(.) |
184 | 29 |
|
2015 | 30 |
set(CMAKE_CXX_FLAGS "-Wall ${CMAKE_CXX_FLAGS}") |
1904 | 31 |
|
184 | 32 |
if(WIN32 AND NOT UNIX) |
33 |
set(HEDGEWARS_BINDIR ".") |
|
267 | 34 |
set(HEDGEWARS_DATADIR "../share/") |
184 | 35 |
else(WIN32 AND NOT UNIX) |
36 |
set(HEDGEWARS_BINDIR ${CMAKE_INSTALL_PREFIX}) |
|
266 | 37 |
if(DEFINED DATA_INSTALL_DIR) |
265 | 38 |
set(HEDGEWARS_DATADIR ${DATA_INSTALL_DIR}) |
266 | 39 |
else(DEFINED DATA_INSTALL_DIR) |
265 | 40 |
set(HEDGEWARS_DATADIR ${CMAKE_INSTALL_PREFIX}/share/) |
266 | 41 |
endif(DEFINED DATA_INSTALL_DIR) |
184 | 42 |
endif(WIN32 AND NOT UNIX) |
43 |
||
579 | 44 |
configure_file(${hedgewars_SOURCE_DIR}/QTfrontend/hwconsts.cpp.in |
781 | 45 |
${CMAKE_CURRENT_BINARY_DIR}/hwconsts.cpp) |
184 | 46 |
|
781 | 47 |
set(hwfr_src |
184 | 48 |
game.cpp |
49 |
main.cpp |
|
781 | 50 |
hwform.cpp |
184 | 51 |
team.cpp |
1907 | 52 |
namegen.cpp |
184 | 53 |
teamselect.cpp |
54 |
teamselhelper.cpp |
|
55 |
frameTeam.cpp |
|
56 |
vertScrollArea.cpp |
|
57 |
gameuiconfig.cpp |
|
58 |
ui_hwform.cpp |
|
59 |
gamecfgwidget.cpp |
|
60 |
pages.cpp |
|
61 |
SquareLabel.cpp |
|
1236 | 62 |
hats.cpp |
184 | 63 |
hedgehogerWidget.cpp |
64 |
hwmap.cpp |
|
65 |
mapContainer.cpp |
|
187 | 66 |
tcpBase.cpp |
239 | 67 |
about.cpp |
297 | 68 |
proto.cpp |
314 | 69 |
fpsedit.cpp |
70 |
netserver.cpp |
|
412 | 71 |
newnetclient.cpp |
72 |
netudpserver.cpp |
|
461 | 73 |
netudpwidget.cpp |
633 | 74 |
netregister.cpp |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
75 |
netserverslist.cpp |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
502
diff
changeset
|
76 |
chatwidget.cpp |
555 | 77 |
binds.cpp |
579 | 78 |
SDLs.cpp |
79 |
playrecordpage.cpp |
|
781 | 80 |
${CMAKE_CURRENT_BINARY_DIR}/hwconsts.cpp |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
81 |
selectWeapon.cpp |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
82 |
itemNum.cpp |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
633
diff
changeset
|
83 |
input_ip.cpp |
1192 | 84 |
igbox.cpp |
1621 | 85 |
weaponItem.cpp |
86 |
statsPage.cpp |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
87 |
misc.cpp |
1881 | 88 |
ammoSchemeModel.cpp |
1932 | 89 |
togglebutton.cpp |
2012 | 90 |
bgwidget.cpp |
1621 | 91 |
) |
184 | 92 |
|
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
93 |
if(MINGW) |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
94 |
# resource compilation for mingw |
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
95 |
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/hedgewars_rc.o |
1574 | 96 |
COMMAND windres -I ${CMAKE_CURRENT_SOURCE_DIR} |
1039 | 97 |
-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
|
98 |
-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
|
99 |
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
|
100 |
else(MINGW) |
1042 | 101 |
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
|
102 |
endif(MINGW) |
184 | 103 |
|
104 |
set(hwfr_moc_hdrs |
|
105 |
game.h |
|
1236 | 106 |
hats.h |
184 | 107 |
hwform.h |
108 |
teamselect.h |
|
109 |
teamselhelper.h |
|
110 |
frameTeam.h |
|
111 |
vertScrollArea.h |
|
112 |
gameuiconfig.h |
|
113 |
gamecfgwidget.h |
|
114 |
pages.h |
|
115 |
SquareLabel.h |
|
116 |
hedgehogerWidget.h |
|
117 |
hwmap.h |
|
118 |
mapContainer.h |
|
187 | 119 |
tcpBase.h |
208 | 120 |
about.h |
297 | 121 |
proto.h |
314 | 122 |
fpsedit.h |
123 |
netserver.h |
|
412 | 124 |
newnetclient.h |
125 |
netudpserver.h |
|
461 | 126 |
netudpwidget.h |
633 | 127 |
netregister.h |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
128 |
netserverslist.h |
555 | 129 |
chatwidget.h |
579 | 130 |
SDLs.h |
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
592
diff
changeset
|
131 |
playrecordpage.h |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
132 |
selectWeapon.h |
880
f9efe907828f
Add win32 resource compilation under mingw (used sim-im srcs as example)
unc0rr
parents:
781
diff
changeset
|
133 |
itemNum.h |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
633
diff
changeset
|
134 |
input_ip.h |
1192 | 135 |
igbox.h |
1621 | 136 |
weaponItem.h |
137 |
statsPage.h |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1843
diff
changeset
|
138 |
misc.h |
1881 | 139 |
ammoSchemeModel.h |
1932 | 140 |
togglebutton.h |
2012 | 141 |
bgwidget.h |
1621 | 142 |
) |
184 | 143 |
|
477 | 144 |
set(hwfr_hdrs |
145 |
binds.h |
|
146 |
ui_hwform.h |
|
147 |
predefteams.h |
|
148 |
KB.h |
|
579 | 149 |
hwconsts.h |
477 | 150 |
) |
184 | 151 |
|
152 |
set(hwfr_rez |
|
153 |
hedgewars.qrc) |
|
154 |
||
155 |
qt4_add_resources(hwfr_rez_src |
|
156 |
${hwfr_rez}) |
|
157 |
||
158 |
qt4_wrap_cpp(hwfr_moc_srcs |
|
159 |
${hwfr_moc_hdrs}) |
|
160 |
||
161 |
add_executable(hedgewars WIN32 |
|
162 |
${hwfr_src} |
|
163 |
${hwfr_moc_srcs} |
|
477 | 164 |
${hwfr_hdrs} |
184 | 165 |
${hwfr_rez_src}) |
2191 | 166 |
|
555 | 167 |
set(HW_LINK_LIBS |
168 |
${QT_LIBRARIES} |
|
169 |
${SDL_LIBRARY} |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
170 |
openalbridge |
2191 | 171 |
) |
184 | 172 |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
173 |
#since openalbridge is linked statically in human systems we need to explicitly link dependencies |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
174 |
if(UNIX) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
175 |
set(HW_LINK_LIBS |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
176 |
${OPENAL_LIBRARY} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
177 |
${OGG_LIBRARY} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
178 |
${VORBIS_LIBRARY} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
179 |
${HW_LINK_LIBS} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
180 |
) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
181 |
if(NOT APPLE) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
182 |
set(HW_LINK_LIBS |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
183 |
${VORBISFILE_LIBRARY} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
184 |
${HW_LINK_LIBS} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
185 |
) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
186 |
endif(NOT APPLE) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
187 |
endif(UNIX) |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
188 |
|
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
189 |
|
184 | 190 |
if(WIN32 AND NOT UNIX) |
555 | 191 |
if(NOT SDL_LIBRARY) |
192 |
set(HW_LINK_LIBS |
|
193 |
${HW_LINK_LIBS} |
|
194 |
SDL |
|
195 |
) |
|
196 |
endif(NOT SDL_LIBRARY) |
|
197 |
||
495 | 198 |
set(HW_LINK_LIBS |
199 |
${HW_LINK_LIBS} |
|
200 |
ole32 |
|
1043 | 201 |
oleaut32 |
495 | 202 |
winspool |
555 | 203 |
uuid |
204 |
) |
|
495 | 205 |
endif(WIN32 AND NOT UNIX) |
184 | 206 |
|
781 | 207 |
target_link_libraries(hedgewars |
495 | 208 |
${HW_LINK_LIBS}) |
209 |
||
2015 | 210 |
|
211 |
if(APPLE) |
|
212 |
set (target_dir ".") |
|
213 |
else(APPLE) |
|
214 |
set (target_dir "bin") |
|
215 |
endif(APPLE) |
|
216 |
||
217 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hedgewars${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |