author | unc0rr |
Wed, 23 Jun 2010 22:17:27 +0400 | |
changeset 3542 | f216b24aeb7f |
parent 3458 | 11cd56019f00 |
child 3555 | 4c5ca656d1bb |
permissions | -rw-r--r-- |
1979 | 1 |
find_program(ghc_executable ghc) |
2 |
||
2401 | 3 |
if(NOT ghc_executable) |
3452 | 4 |
message(FATAL_ERROR "Cannot find GHC") |
1979 | 5 |
endif(NOT ghc_executable) |
6 |
||
2401 | 7 |
|
1979 | 8 |
set(hwserver_sources |
3452 | 9 |
OfficialServer/DBInteraction.hs |
10 |
Actions.hs |
|
11 |
ClientIO.hs |
|
12 |
CoreTypes.hs |
|
13 |
HWProtoCore.hs |
|
14 |
HWProtoInRoomState.hs |
|
15 |
HWProtoLobbyState.hs |
|
16 |
HWProtoNEState.hs |
|
3542 | 17 |
HandlerUtils.hs |
3452 | 18 |
NetRoutines.hs |
19 |
Opts.hs |
|
3542 | 20 |
RoomsAndClients.hs |
3452 | 21 |
ServerCore.hs |
3458 | 22 |
ServerState.hs |
23 |
Store.hs |
|
3542 | 24 |
Utils.hs |
3452 | 25 |
hedgewars-server.hs |
26 |
) |
|
1979 | 27 |
|
28 |
set(hwserv_main ${hedgewars_SOURCE_DIR}/gameServer/hedgewars-server.hs) |
|
29 |
||
30 |
set(ghc_flags |
|
3452 | 31 |
--make ${hwserv_main} |
32 |
-i${hedgewars_SOURCE_DIR}/gameServer |
|
33 |
-o ${EXECUTABLE_OUTPUT_PATH}/hedgewars-server${CMAKE_EXECUTABLE_SUFFIX} |
|
34 |
-odir ${CMAKE_CURRENT_BINARY_DIR} |
|
35 |
-hidir ${CMAKE_CURRENT_BINARY_DIR}) |
|
1979 | 36 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2409
diff
changeset
|
37 |
set(ghc_flags ${haskell_compiler_flags_cmn} ${ghc_flags}) |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2015
diff
changeset
|
38 |
|
1979 | 39 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hedgewars-server${CMAKE_EXECUTABLE_SUFFIX}" |
3452 | 40 |
COMMAND "${ghc_executable}" |
41 |
ARGS ${ghc_flags} |
|
42 |
MAIN_DEPENDENCY ${hwserv_main} |
|
43 |
DEPENDS ${hwserver_sources} |
|
44 |
) |
|
1979 | 45 |
|
46 |
add_custom_target(hedgewars-server ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hedgewars-server${CMAKE_EXECUTABLE_SUFFIX}") |
|
47 |
||
2015 | 48 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hedgewars-server${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_dir}) |