author | displacer |
Thu, 08 Feb 2007 21:11:58 +0000 | |
changeset 420 | 6cdfc07dceed |
parent 412 | 2ddcc3e3e644 |
child 461 | 105af110b0e6 |
permissions | -rw-r--r-- |
260 | 1 |
set(QT_MIN_VERSION "4.2.0") |
2 |
||
184 | 3 |
find_package(Qt4 REQUIRED) |
4 |
||
5 |
include_directories(${QT_INCLUDES} .) |
|
6 |
||
7 |
if(WIN32 AND NOT UNIX) |
|
8 |
set(HEDGEWARS_BINDIR ".") |
|
267 | 9 |
set(HEDGEWARS_DATADIR "../share/") |
184 | 10 |
else(WIN32 AND NOT UNIX) |
11 |
set(HEDGEWARS_BINDIR ${CMAKE_INSTALL_PREFIX}) |
|
266 | 12 |
if(DEFINED DATA_INSTALL_DIR) |
265 | 13 |
set(HEDGEWARS_DATADIR ${DATA_INSTALL_DIR}) |
266 | 14 |
else(DEFINED DATA_INSTALL_DIR) |
265 | 15 |
set(HEDGEWARS_DATADIR ${CMAKE_INSTALL_PREFIX}/share/) |
266 | 16 |
endif(DEFINED DATA_INSTALL_DIR) |
184 | 17 |
endif(WIN32 AND NOT UNIX) |
18 |
||
277 | 19 |
configure_file(${hedgewars_SOURCE_DIR}/QTfrontend/main.cpp.in |
20 |
${hedgewars_SOURCE_DIR}/QTfrontend/main.cpp) |
|
271 | 21 |
configure_file(${hedgewars_SOURCE_DIR}/QTfrontend/hwconsts.h.in |
22 |
${hedgewars_SOURCE_DIR}/QTfrontend/hwconsts.h) |
|
184 | 23 |
|
24 |
set(hwfr_src |
|
25 |
game.cpp |
|
26 |
main.cpp |
|
27 |
hwform.cpp |
|
28 |
team.cpp |
|
29 |
teamselect.cpp |
|
30 |
teamselhelper.cpp |
|
31 |
frameTeam.cpp |
|
32 |
vertScrollArea.cpp |
|
33 |
gameuiconfig.cpp |
|
34 |
ui_hwform.cpp |
|
35 |
gamecfgwidget.cpp |
|
36 |
pages.cpp |
|
37 |
SquareLabel.cpp |
|
38 |
hedgehogerWidget.cpp |
|
39 |
hwmap.cpp |
|
40 |
mapContainer.cpp |
|
187 | 41 |
tcpBase.cpp |
239 | 42 |
about.cpp |
297 | 43 |
proto.cpp |
314 | 44 |
fpsedit.cpp |
45 |
netserver.cpp |
|
420
6cdfc07dceed
netserver and netonnectedclient splited to different files
displacer
parents:
412
diff
changeset
|
46 |
netconnectedclient.cpp |
412 | 47 |
newnetclient.cpp |
48 |
netudpserver.cpp |
|
49 |
netudpwidget.cpp) |
|
184 | 50 |
|
51 |
if (WIN32) |
|
52 |
set(hwfr_src ${hwfr_src} res/hedgewars.rc) |
|
53 |
endif (WIN32) |
|
54 |
||
55 |
set(hwfr_moc_hdrs |
|
56 |
game.h |
|
57 |
hwform.h |
|
58 |
binds.h |
|
59 |
teamselect.h |
|
60 |
teamselhelper.h |
|
61 |
frameTeam.h |
|
62 |
vertScrollArea.h |
|
63 |
gameuiconfig.h |
|
64 |
ui_hwform.h |
|
65 |
gamecfgwidget.h |
|
66 |
predefteams.h |
|
67 |
pages.h |
|
68 |
SquareLabel.h |
|
69 |
hedgehogerWidget.h |
|
70 |
hwmap.h |
|
71 |
mapContainer.h |
|
187 | 72 |
tcpBase.h |
208 | 73 |
about.h |
239 | 74 |
KB.h |
297 | 75 |
proto.h |
314 | 76 |
fpsedit.h |
77 |
netserver.h |
|
420
6cdfc07dceed
netserver and netonnectedclient splited to different files
displacer
parents:
412
diff
changeset
|
78 |
netconnectedclient.h |
412 | 79 |
newnetclient.h |
80 |
netudpserver.h |
|
81 |
netudpwidget.h) |
|
184 | 82 |
|
83 |
||
84 |
set(hwfr_rez |
|
85 |
hedgewars.qrc) |
|
86 |
||
87 |
qt4_add_resources(hwfr_rez_src |
|
88 |
${hwfr_rez}) |
|
89 |
||
90 |
qt4_wrap_cpp(hwfr_moc_srcs |
|
91 |
${hwfr_moc_hdrs}) |
|
92 |
||
93 |
add_executable(hedgewars WIN32 |
|
94 |
${hwfr_src} |
|
95 |
${hwfr_moc_srcs} |
|
96 |
${hwfr_rez_src}) |
|
97 |
||
98 |
target_link_libraries(hedgewars |
|
99 |
${QT_QTCORE_LIBRARY} |
|
100 |
${QT_QTGUI_LIBRARY} |
|
101 |
${QT_QTNETWORK_LIBRARY} |
|
222 | 102 |
${QT_QTSVG_LIBRARY} |
184 | 103 |
${QT_QTMAIN_LIBRARY}) |
104 |
||
224 | 105 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hedgewars${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin) |
184 | 106 |
|
107 |
||
108 |
if(WIN32 AND NOT UNIX) |
|
109 |
string(REPLACE "\\" "/" QT_BIN_DIR $ENV{QTDIR}/bin) |
|
110 |
||
111 |
install(FILES |
|
112 |
"${QT_BIN_DIR}/QtNetwork4.dll" |
|
113 |
"${QT_BIN_DIR}/QtGui4.dll" |
|
114 |
"${QT_BIN_DIR}/QtCore4.dll" |
|
223 | 115 |
"${QT_BIN_DIR}/QtSvg4.dll" |
241
cae2924bb1ab
Add QtXml4.dll to packing list, as it needed for QtSvg4.dll
unc0rr
parents:
239
diff
changeset
|
116 |
"${QT_BIN_DIR}/QtXml4.dll" |
184 | 117 |
"${QT_BIN_DIR}/mingwm10.dll" |
118 |
DESTINATION bin) |
|
119 |
endif(WIN32 AND NOT UNIX) |