author | unc0rr |
Sun, 10 Dec 2006 18:57:05 +0000 | |
changeset 297 | 279e10ec31b4 |
parent 277 | 04a613bab65c |
child 314 | 83773ccf4f09 |
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 |
netclient.cpp |
|
30 |
teamselect.cpp |
|
31 |
teamselhelper.cpp |
|
32 |
frameTeam.cpp |
|
33 |
vertScrollArea.cpp |
|
34 |
gameuiconfig.cpp |
|
35 |
ui_hwform.cpp |
|
36 |
gamecfgwidget.cpp |
|
37 |
pages.cpp |
|
38 |
SquareLabel.cpp |
|
39 |
hedgehogerWidget.cpp |
|
40 |
hwmap.cpp |
|
41 |
mapContainer.cpp |
|
187 | 42 |
tcpBase.cpp |
239 | 43 |
about.cpp |
297 | 44 |
proto.cpp |
45 |
fpsedit.cpp) |
|
184 | 46 |
|
47 |
if (WIN32) |
|
48 |
set(hwfr_src ${hwfr_src} res/hedgewars.rc) |
|
49 |
endif (WIN32) |
|
50 |
||
51 |
set(hwfr_moc_hdrs |
|
52 |
game.h |
|
53 |
hwform.h |
|
54 |
binds.h |
|
55 |
netclient.h |
|
56 |
teamselect.h |
|
57 |
teamselhelper.h |
|
58 |
frameTeam.h |
|
59 |
vertScrollArea.h |
|
60 |
gameuiconfig.h |
|
61 |
ui_hwform.h |
|
62 |
gamecfgwidget.h |
|
63 |
predefteams.h |
|
64 |
pages.h |
|
65 |
SquareLabel.h |
|
66 |
hedgehogerWidget.h |
|
67 |
hwmap.h |
|
68 |
mapContainer.h |
|
187 | 69 |
tcpBase.h |
208 | 70 |
about.h |
239 | 71 |
KB.h |
297 | 72 |
proto.h |
73 |
fpsedit.h) |
|
184 | 74 |
|
75 |
||
76 |
set(hwfr_rez |
|
77 |
hedgewars.qrc) |
|
78 |
||
79 |
qt4_add_resources(hwfr_rez_src |
|
80 |
${hwfr_rez}) |
|
81 |
||
82 |
qt4_wrap_cpp(hwfr_moc_srcs |
|
83 |
${hwfr_moc_hdrs}) |
|
84 |
||
85 |
add_executable(hedgewars WIN32 |
|
86 |
${hwfr_src} |
|
87 |
${hwfr_moc_srcs} |
|
88 |
${hwfr_rez_src}) |
|
89 |
||
90 |
target_link_libraries(hedgewars |
|
91 |
${QT_QTCORE_LIBRARY} |
|
92 |
${QT_QTGUI_LIBRARY} |
|
93 |
${QT_QTNETWORK_LIBRARY} |
|
222 | 94 |
${QT_QTSVG_LIBRARY} |
184 | 95 |
${QT_QTMAIN_LIBRARY}) |
96 |
||
224 | 97 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hedgewars${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION bin) |
184 | 98 |
|
99 |
||
100 |
if(WIN32 AND NOT UNIX) |
|
101 |
string(REPLACE "\\" "/" QT_BIN_DIR $ENV{QTDIR}/bin) |
|
102 |
||
103 |
install(FILES |
|
104 |
"${QT_BIN_DIR}/QtNetwork4.dll" |
|
105 |
"${QT_BIN_DIR}/QtGui4.dll" |
|
106 |
"${QT_BIN_DIR}/QtCore4.dll" |
|
223 | 107 |
"${QT_BIN_DIR}/QtSvg4.dll" |
241
cae2924bb1ab
Add QtXml4.dll to packing list, as it needed for QtSvg4.dll
unc0rr
parents:
239
diff
changeset
|
108 |
"${QT_BIN_DIR}/QtXml4.dll" |
184 | 109 |
"${QT_BIN_DIR}/mingwm10.dll" |
110 |
DESTINATION bin) |
|
111 |
endif(WIN32 AND NOT UNIX) |