-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
752 lines (664 loc) · 24 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 2.6)
project(sumwars)
MESSAGE(STATUS "")
MESSAGE(STATUS "### Welcome to Summoning Wars build system ###")
MESSAGE(STATUS "**********************************************")
MESSAGE(STATUS " http://sumwars.org/wiki/Build_instructions ")
MESSAGE(STATUS "")
OPTION(SUMWARS_NO_TINYXML "Do not use bundled, in-source TinyXML Lib" OFF)
OPTION(SUMWARS_NO_ENET "Do not use bundled, in-source ENET Lib" OFF)
OPTION(SUMWARS_BUILD_TOOLS "Builds editor tools (not needed for gameplay, only useful for content authors)" OFF)
OPTION(SUMWARS_BUILD_WITH_ONLINE_SERVICE "Builds enables the online services)" OFF)
IF(WIN32)
OPTION(SUMWARS_POST_BUILD_COPY "After a build, copy the executable to the project folder (Win32)" ON)
OPTION(SUMWARS_STANDALONE_MODE "(Highly recommended for deployment on Windows and MacOSX) In case this is enabled, all paths (share, doc, bin, plugins) are set to be relative" ON)
OPTION(SUMWARS_PORTABLE_MODE "In case this is enabled, save files and config files are kept in application directory instead of home folders / user folders. On Windows this also means that all dynamic libraries will be relative to the executable" ON)
ELSE(WIN32)
OPTION(SUMWARS_POST_BUILD_COPY "After a build, copy the executable to the project folder (Win32)" OFF)
OPTION(SUMWARS_STANDALONE_MODE "(Highly recommended for deployment on Windows and MacOSX) In case this is enabled, all paths (share, doc, bin, plugins) are set to be relative" OFF)
OPTION(SUMWARS_PORTABLE_MODE "In case this is enabled, save files and config files are kept in application directory instead of home folders / user folders. On Windows this also means that all dynamic libraries will be relative to the executable" OFF)
ENDIF(WIN32)
OPTION(SUMWARS_RANDOM_REGIONS "Regions are randomized if enabled. All regions are always the same if you leave this disabled (useful for developers)." ON)
OPTION(SUMWARS_USE_BREAKPAD "Use Google Breakpad for error reporting" OFF)
SET(SUMWARS_VERSION_MAJOR "0")
SET(SUMWARS_VERSION_MINOR "5")
SET(SUMWARS_VERSION_PATCH "8")
SET(SUMWARS_SHORT_VERSION "${SUMWARS_VERSION_MAJOR}.${SUMWARS_VERSION_MINOR}.${SUMWARS_VERSION_PATCH}")
SET(SUMWARS_VERSION "${SUMWARS_SHORT_VERSION}")
CONFIGURE_FILE("src/version.h.in" "src/version.h")
MESSAGE(STATUS "Version: ${SUMWARS_VERSION}")
MESSAGE(STATUS "Short Version: ${SUMWARS_SHORT_VERSION}")
if(UNIX)
set(SUMWARS_EXECUTABLE_DEFAULT_DIR "bin")
else()
set(SUMWARS_EXECUTABLE_DEFAULT_DIR "")
endif()
SET(SUMWARS_EXECUTABLE_DIR "${SUMWARS_EXECUTABLE_DEFAULT_DIR}" CACHE STRING "Path that represents the directory with sumwars executable, CMAKE_INSTALL_PREFIX gets prepended! (Only applies when SUMWARS_STANDALONE_MODE is OFF)")
if(UNIX)
set(SUMWARS_SHARE_DEFAULT_DIR "share/sumwars")
else()
set(SUMWARS_SHARE_DEFAULT_DIR "share")
endif()
SET(SUMWARS_SHARE_DIR "${SUMWARS_SHARE_DEFAULT_DIR}" CACHE STRING "Path that represents the directory with sumwars data, CMAKE_INSTALL_PREFIX gets prepended! (Only applies when SUMWARS_STANDALONE_MODE is OFF)")
if(UNIX)
set(SUMWARS_DOC_DEFAULT_DIR "share/doc/sumwars-${SUMWARS_SHORT_VERSION}")
else()
set(SUMWARS_DOC_DEFAULT_DIR "doc")
endif()
SET(SUMWARS_DOC_DIR "${SUMWARS_DOC_DEFAULT_DIR}" CACHE STRING "Path that represents the directory with sumwars documentation, CMAKE_INSTALL_PREFIX gets prepended! (Only applies when SUMWARS_STANDALONE_MODE is OFF)")
set(SUMWARS_LANGUAGES_DEFAULT "*")
SET(SUMWARS_LANGUAGES "${SUMWARS_LANGUAGES_DEFAULT}" CACHE STRING "Language codes of the translations which will be copied upon
install ('*' matches all available translations).")
IF( NOT SUMWARS_LANGUAGES )
set(SUMWARS_LANGUAGES ${SUMWARS_LANGUAGES_DEFAULT})
ENDIF()
IF( NOT CMAKE_BUILD_TYPE )
# CMake defaults to leaving CMAKE_BUILD_TYPE empty. This screws up
# differentiation between debug and release builds.
SET( CMAKE_BUILD_TYPE "RelWithDebInfo" )
ENDIF()
MESSAGE(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
# separating newline before configuration really happens
MESSAGE(STATUS "")
IF( SUMWARS_STANDALONE_MODE )
MESSAGE("Standalone mode enabled, I am overriding all paths!")
# In case of a standalone mode, we override all paths to our hardcoded, arbitrarily chosen values.
# There is no point in making these customisable, I think.
#SET(CMAKE_INSTALL_PREFIX "./")
SET(SUMWARS_PREFIX "./")
SET(SUMWARS_EXECUTABLE_DIR "./")
SET(SUMWARS_SHARE_DIR "./share")
SET(SUMWARS_DOC_DIR "./")
# We recommend enable post build copy since that will make it run immediately after building
IF ( NOT SUMWARS_POST_BUILD_COPY )
MESSAGE(STATUS "You might be interested in turning SUMWARS_POST_BUILD_COPY ON to make sumwars run immediately after building from the source folder.")
ENDIF()
MESSAGE(STATUS "")
ELSE()
SET(SUMWARS_PREFIX ${CMAKE_INSTALL_PREFIX})
ENDIF()
SET(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules/;${CMAKE_MODULE_PATH}")
IF(WIN32)
SET(CMAKE_MODULE_PATH "$ENV{OGRE_HOME}/CMake/;${CMAKE_MODULE_PATH}")
ENDIF(WIN32)
IF(UNIX)
SET(CMAKE_MODULE_PATH "/usr/local/lib/OGRE/cmake/;${CMAKE_MODULE_PATH}")
ENDIF(UNIX)
SET(CMAKE_DEBUG_POSTFIX "_d")
if(NOT CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/dist")
endif()
FIND_PACKAGE(OGRE REQUIRED)
IF("${OGRE_VERSION_NAME}" STREQUAL "Cthugha")
set(SUMWARS_OGRE_SINGLETON "ms_Singleton")
ELSEIF("${OGRE_VERSION_NAME}" STREQUAL "Ghadamon")
set(SUMWARS_OGRE_SINGLETON "msSingleton")
ELSE()
set(SUMWARS_OGRE_SINGLETON "msSingleton")
ENDIF()
SET(SUMWARS_OGRE_PLUGIN_DIR_REL ${OGRE_PLUGIN_DIR_REL})
SET(SUMWARS_OGRE_PLUGIN_DIR_DBG ${OGRE_PLUGIN_DIR_DBG})
IF("${OGRE_PLUGIN_DIR_REL}" STREQUAL "")
MESSAGE(WARNING "Ogre plugin dir not found! plugins.cfg may have to be adjusted manually!")
ENDIF()
IF( WIN32 )# On Windows the plugins are distributed with the executable.
IF( SUMWARS_PORTABLE_MODE OR SUMWARS_STANDALONE_MODE)
SET(SUMWARS_OGRE_PLUGIN_DIR_REL "./")
SET(SUMWARS_OGRE_PLUGIN_DIR_DBG "./")
ENDIF()
ENDIF()
# add our build include directory
include_directories(
"${CMAKE_CURRENT_BINARY_DIR}/src"
"${CMAKE_CURRENT_BINARY_DIR}/src/gui"
)
IF (WIN32)
FIND_PACKAGE(GNUWIN REQUIRED)
ENDIF (WIN32)
FIND_PACKAGE(OIS REQUIRED)
FIND_PACKAGE(Lua REQUIRED)
FIND_PACKAGE(CEGUI REQUIRED)
SET(CEGUI_VERSION_RESOURCES "gui_0.8")
IF(CEGUI_VERSION VERSION_LESS "0.8.0")
MESSAGE(FATAL_ERROR "This version of Sumwars requires at least CEGUI 0.8.0")
ENDIF()
FIND_PACKAGE(CEGUIOGRE REQUIRED)
FIND_PACKAGE(OpenAL REQUIRED)
FIND_PACKAGE(ALUT REQUIRED)
FIND_PACKAGE(Ogg REQUIRED)
FIND_PACKAGE(Vorbis REQUIRED)
FIND_PACKAGE(PhysFS REQUIRED)
FIND_PACKAGE(Threads REQUIRED)
if(WIN32)
set(Boost_USE_STATIC_LIBS ON)
endif(WIN32)
#set(Boost_DEBUG 1) #uncomment this if you have problems finding boost!
find_package(Boost COMPONENTS filesystem system date_time chrono thread REQUIRED)
IF(SUMWARS_NO_TINYXML)
FIND_PACKAGE(TinyXML REQUIRED)
ENDIF()
IF(SUMWARS_NO_ENET)
FIND_PACKAGE(Enet REQUIRED)
ENDIF()
IF (UNIX AND NOT APPLE)
FIND_PACKAGE(X11 REQUIRED)
ENDIF()
IF(SUMWARS_USE_BREAKPAD)
FIND_PACKAGE(GoogleBreakpad REQUIRED)
ENDIF()
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/core)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/gui)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/gui/contenteditor)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/gussound)
ADD_DEFINITIONS(-DGUSSOUND_STANDALONE)
INCLUDE_DIRECTORIES(${OGRE_INCLUDE_DIRS})
INCLUDE_DIRECTORIES(${OGRE_RTShaderSystem_INCLUDE_DIR})
IF (WIN32)
Message(STATUS "Adding boost include: ${BoostOGRE_INCLUDE_DIR}")
INCLUDE_DIRECTORIES(${BoostOGRE_INCLUDE_DIR})
Message(STATUS "Adding gnu include: ${GNUWIN_INCLUDE_DIR}")
INCLUDE_DIRECTORIES(${GNUWIN_INCLUDE_DIR})
ENDIF (WIN32)
INCLUDE_DIRECTORIES(${OIS_INCLUDE_DIRS})
INCLUDE_DIRECTORIES(${LUA_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${CEGUI_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${CEGUIOGRE_INCLUDE_DIRS})
INCLUDE_DIRECTORIES(${OPENAL_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${ALUT_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${OGG_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${VORBIS_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${PHYSFS_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
IF(SUMWARS_NO_TINYXML)
INCLUDE_DIRECTORIES(${TINYXML_INCLUDE_DIR})
ELSE()
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/tinyxml)
ENDIF()
IF(SUMWARS_NO_ENET)
INCLUDE_DIRECTORIES(${ENET_INCLUDE_DIR})
ELSE()
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/enet/include)
ENDIF()
IF(SUMWARS_BUILD_TOOLS OR SUMWARS_BUILD_WITH_ONLINE_SERVICE)
IF(SUMWARS_BUILD_TOOLS)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/gui/debugpanel)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/gui/debugpanel/filebrowser)
ENDIF()
IF(SUMWARS_BUILD_WITH_ONLINE_SERVICE)
#cpp-netlib for the http client
find_package( OpenSSL )
add_subdirectory(src/cpp-netlib)
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/cpp-netlib/)
set(CPPNETLIB_LIBS cppnetlib-client-connections cppnetlib-server-parsers cppnetlib-uri)
ENDIF()
ENDIF()
IF(SUMWARS_USE_BREAKPAD)
INCLUDE_DIRECTORIES(${BREAKPAD_INCLUDE_DIR}/src)
ENDIF()
IF(WIN32)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/Dependencies/dirent)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/Dependencies/boost)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/Dependencies/gettext/include/)
ADD_DEFINITIONS( "/W3 /D_CRT_SECURE_NO_WARNINGS /wd4800 /wd4244 /wd4305 /wd4251 /nologo" )
MESSAGE("WARNING: Compiler warnings 4800, 4244, 4251 and 4305 disabled!")
ELSE()
INCLUDE_DIRECTORIES(${PTHREADS_INCLUDE_DIR})
ENDIF()
IF(UNIX AND NOT APPLE)
INCLUDE_DIRECTORIES(${X11_X11_INCLUDE_PATH})
INCLUDE_DIRECTORIES(${X11_Xrandr_INCLUDE_PATH})
ENDIF()
FILE(READ ${CMAKE_CURRENT_SOURCE_DIR}/AUTHORS SUMWARS_AUTHORS_CONTENT)
STRING(REPLACE \n \\n SUMWARS_AUTHORS_CONTENT "${SUMWARS_AUTHORS_CONTENT}")
CONFIGURE_FILE("src/config.h.in" "src/config.h")
CONFIGURE_FILE("src/gui/default_resources.cfg.inc.in" "src/gui/default_resources.cfg.inc" @ONLY)
CONFIGURE_FILE("src/gui/creditswindow_content.inc.in" "src/gui/creditswindow_content.inc")
FILE(GLOB_RECURSE HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/*.h)
IF(SUMWARS_NO_TINYXML)
SET(SRCS_TINYXML "")
ELSE()
SET(SRCS_TINYXML
./src/tinyxml/tinystr.cpp
./src/tinyxml/tinystr.h
./src/tinyxml/tinyxmlerror.cpp
./src/tinyxml/tinyxml.cpp
./src/tinyxml/tinyxml.h
./src/tinyxml/tinyxmlparser.cpp)
ENDIF()
IF(SUMWARS_NO_ENET)
SET(SRCS_ENET "")
ELSE()
SET(SRCS_ENET
./src/enet/callbacks.c
./src/enet/compress.c
./src/enet/host.c
./src/enet/list.c
./src/enet/packet.c
./src/enet/peer.c
./src/enet/protocol.c
./src/enet/unix.c
./src/enet/win32.c
./src/enet/include/enet/callbacks.h
./src/enet/include/enet/enet.h
./src/enet/include/enet/list.h
./src/enet/include/enet/protocol.h
./src/enet/include/enet/time.h
./src/enet/include/enet/types.h
./src/enet/include/enet/unix.h
./src/enet/include/enet/utility.h
./src/enet/include/enet/win32.h
)
ENDIF()
SET(SRCS_GUSSOUND
./src/gussound/goggstreamedsound.cpp
./src/gussound/goggstreamedsound.h
./src/gussound/gopenal.cpp
./src/gussound/gopenal.h
./src/gussound/gussound.cpp
./src/gussound/gussound.h
./src/gussound/gussoundutil/stringutil.cpp
./src/gussound/gussoundutil/timer.cpp
)
SET(SRCS_CORE
./src/core/nlfg.cpp
./src/core/worldobject.cpp
./src/core/itemloader.cpp
./src/core/itemlist.cpp
./src/core/region.cpp
./src/core/objectloader.cpp
./src/core/player.cpp
./src/core/monsterbase.cpp
./src/core/monster.cpp
./src/core/itemfactory.cpp
./src/core/translatablestring.cpp
./src/core/event.cpp
./src/core/charconv.cpp
./src/core/stdstreamconv.cpp
./src/core/gameobject.cpp
./src/core/projectile.cpp
./src/core/treasure.cpp
./src/core/dialogue.cpp
./src/core/playerbase.cpp
./src/core/objectfactory.cpp
./src/core/gettext.cpp
./src/core/dropitem.cpp
./src/core/party.cpp
./src/core/minimap.cpp
./src/core/logger.cpp
./src/core/item.cpp
./src/core/networkstruct.cpp
./src/core/gridunit.cpp
./src/core/quest.cpp
./src/core/eventsystem.cpp
./src/core/creature.cpp
./src/core/random.cpp
./src/core/action.cpp
./src/core/creaturestruct.cpp
./src/core/servernetwork.cpp
./src/core/nlfgservernetwork.cpp
./src/core/nlfgclientnetwork.cpp
./src/core/nlfgnetworkpacket.cpp
./src/core/pathfind.cpp
./src/core/damage.cpp
./src/core/waypoint.cpp
./src/core/document.cpp
./src/core/debug.cpp
./src/core/unionfindtree.cpp
./src/core/world.cpp
./src/core/fixedbase.cpp
./src/core/fixedobject.cpp
./src/core/templateloader.cpp
./src/core/elementattrib.cpp
./src/core/worldloader.cpp
./src/core/geometry.cpp
./src/core/scriptobject.cpp
./src/core/spawnpoint.cpp
./src/core/fraction.cpp
./src/core/command.cpp
./src/core/mapgenerator.cpp
./src/core/options.cpp
./src/core/sumwarshelper.cpp
)
SET(SRCS_GUI
./src/gui/application.cpp
./src/gui/application.h
./src/gui/ceguiutility.cpp
./src/gui/ceguiutility.h
./src/gui/charcreate.cpp
./src/gui/charcreate.h
./src/gui/charinfo.cpp
./src/gui/charinfo.h
./src/gui/chatline.cpp
./src/gui/chatline.h
./src/gui/clipboard.cpp
./src/gui/clipboard.h
./src/gui/controlpanel.cpp
./src/gui/controlpanel.h
./src/gui/creditswindow.cpp
./src/gui/creditswindow.h
./src/gui/dialoguewindow.cpp
./src/gui/dialoguewindow.h
./src/gui/graphicmanager.cpp
./src/gui/graphicmanager.h
./src/gui/graphicobject.cpp
./src/gui/graphicobject.h
./src/gui/graphicobjectrenderinfo.cpp
./src/gui/graphicobjectrenderinfo.h
./src/gui/inventory.cpp
./src/gui/inventory.h
./src/gui/itemwindow.cpp
./src/gui/itemwindow.h
./src/gui/listitem.h
./src/gui/main_gui.cpp
./src/gui/mainmenu.cpp
./src/gui/mainmenu.h
./src/gui/mainwindow.cpp
./src/gui/mainwindow.h
./src/gui/messageboxes.cpp
./src/gui/messageboxes.h
./src/gui/minimapwindow.cpp
./src/gui/minimapwindow.h
./src/gui/networkwindows.cpp
./src/gui/networkwindows.h
./src/gui/optionswindow.cpp
./src/gui/optionswindow.h
./src/gui/partyinfo.cpp
./src/gui/partyinfo.h
./src/gui/questinfo.cpp
./src/gui/questinfo.h
./src/gui/savegamelist.cpp
./src/gui/savegamelist.h
./src/gui/scene.cpp
./src/gui/scene.h
./src/gui/skilltree.cpp
./src/gui/skilltree.h
./src/gui/soundhelper.cpp
./src/gui/soundhelper.h
./src/gui/soundobject.cpp
./src/gui/soundobject.h
./src/gui/tooltip.cpp
./src/gui/tooltip.h
./src/gui/tooltipmanager.cpp
./src/gui/tooltipmanager.h
./src/gui/tooltipsettings.h
./src/gui/tradewindow.cpp
./src/gui/tradewindow.h
./src/gui/window.h
./src/gui/worldmap.cpp
./src/gui/worldmap.h
# ./src/gui/ShaderManager.cpp
# ./src/gui/ShadowCameraSetup.cpp
)
IF (WIN32)
SOURCE_GROUP ("tinyxml" FILES ${SRCS_TINYXML})
SOURCE_GROUP ("enet" FILES ${SRCS_ENET})
SOURCE_GROUP ("gussound" FILES ${SRCS_GUSSOUND})
SOURCE_GROUP ("core" FILES ${SRCS_CORE})
SOURCE_GROUP ("gui" FILES ${SRCS_GUI})
ENDIF ()
SET(SRCS
${SRCS_TINYXML}
${SRCS_ENET}
${SRCS_GUSSOUND}
${HEADER_FILES}
${SRCS_CORE}
${SRCS_GUI}
)
IF(SUMWARS_BUILD_TOOLS)
SET(SRCS_BUILD_TOOLS_DBG_PANEL
./src/gui/debugpanel/benchmarktab.cpp
./src/gui/debugpanel/benchmarktab.h
./src/gui/debugpanel/debugcameratab.cpp
./src/gui/debugpanel/debugcameratab.h
./src/gui/debugpanel/debugpanel.cpp
./src/gui/debugpanel/debugpanel.h
./src/gui/debugpanel/guidebugtab.cpp
./src/gui/debugpanel/guidebugtab.h
./src/gui/debugpanel/iconeditortab.cpp
./src/gui/debugpanel/iconeditortab.h
./src/gui/debugpanel/luascripttab.cpp
./src/gui/debugpanel/luascripttab.h
./src/gui/debugpanel/textfileeditwindow.cpp
./src/gui/debugpanel/textfileeditwindow.h
./src/gui/debugpanel/filebrowser/filebrowser.cpp
./src/gui/debugpanel/filebrowser/filebrowser.h
)
SET(SRCS_BUILD_TOOLS_CONTENT_EDITOR
./src/gui/contenteditor/contenteditor.cpp
./src/gui/contenteditor/contenteditor.h
./src/gui/contenteditor/contenteditortab.cpp
./src/gui/contenteditor/contenteditortab.h
./src/gui/contenteditor/contenttab.h
./src/gui/contenteditor/fixedobjecteditor.cpp
./src/gui/contenteditor/fixedobjecteditor.h
./src/gui/contenteditor/gameinfotab.cpp
./src/gui/contenteditor/gameinfotab.h
./src/gui/contenteditor/itemeditor.cpp
./src/gui/contenteditor/itemeditor.h
./src/gui/contenteditor/monstereditor.cpp
./src/gui/contenteditor/monstereditor.h
./src/gui/contenteditor/renderinfoeditor.cpp
./src/gui/contenteditor/renderinfoeditor.h
)
SOURCE_GROUP ("tools\\dbgpanel" FILES ${SRCS_BUILD_TOOLS_DBG_PANEL})
SOURCE_GROUP ("tools\\contedit" FILES ${SRCS_BUILD_TOOLS_CONTENT_EDITOR})
SET(SRCS
${SRCS}
${SRCS_BUILD_TOOLS_DBG_PANEL}
${SRCS_BUILD_TOOLS_CONTENT_EDITOR}
)
ENDIF()
IF(SUMWARS_BUILD_WITH_ONLINE_SERVICE)
SET(SRCS
${SRCS}
${HEADER_FILES}
./src/core/onlineservicesmanager.cpp
)
ENDIF()
# If building for windows based systems, the resource file (containing
# the manifest, icon and other resources) should also be included
IF (WIN32)
SET(SRCS
${SRCS}
./src/winicon/Sumwars.rc
)
SET(HEADER_FILES
${HEADER_FILES}
./src/winicon/resource.h
)
ENDIF (WIN32)
ADD_EXECUTABLE(sumwars ${SRCS})
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} ${PROJECT_BINARY_DIR}/cpp-netlib/libs/network/src/)
SET(LINK_LIBS
${OGRE_LIBRARIES}
${OGRE_Terrain_LIBRARY}
${OGRE_RTShaderSystem_LIBRARY}
${OIS_LIBRARIES}
${CEGUI_LIBRARY}
${CEGUIOGRE_LIBRARY}
${LUA_LIBRARIES}
${OPENAL_LIBRARY}
${ALUT_LIBRARY}
${OGG_LIBRARY}
${VORBIS_LIBRARIES}
${PHYSFS_LIBRARY}
${Boost_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
${CPPNETLIB_LIBS}
)
IF(SUMWARS_BUILD_WITH_ONLINE_SERVICE)
SET(LINK_LIBS
${LINK_LIBS}
${CPPNETLIB_LIBS}
${OPENSSL_CRYPTO_LIBRARY}
${OPENSSL_SSL_LIBRARY}
)
ENDIF()
IF(SUMWARS_NO_TINYXML)
SET(LINK_LIBS ${LINK_LIBS} ${TINYXML_LIBRARIES})
ENDIF()
IF(SUMWARS_NO_ENET)
SET(LINK_LIBS ${LINK_LIBS} ${Enet_LIBRARY})
ENDIF()
IF(SUMWARS_BUILD_TOOLS OR SUMWARS_BUILD_WITH_ONLINE_SERVICE)
IF(SUMWARS_BUILD_TOOLS)
ADD_DEFINITIONS(-DSUMWARS_BUILD_TOOLS)
ENDIF()
IF(SUMWARS_BUILD_WITH_ONLINE_SERVICE)
ADD_DEFINITIONS(-DSUMWARS_BUILD_WITH_ONLINE_SERVICES)
ENDIF()
ENDIF()
IF(SUMWARS_USE_BREAKPAD)
SET(LINK_LIBS
${LINK_LIBS}
${BREAKPAD_COMMON_LIBRARY}
${BREAKPAD_EXCEPTION_HANDLER_LIBRARY}
${BREAKPAD_CRASH_GENERATION_CLIENT_LIBRARY}
#${BREAKPAD_CRASH_REPORT_SENDER_LIBRARY}
)
ENDIF()
IF(WIN32)
SET(LINK_LIBS
ws2_32.lib
winmm.lib
${LINK_LIBS}
${GNUWIN_LIBRARY}
${BoostOGRE_LIBRARIES}
)
ELSEIF(UNIX AND NOT APPLE)
SET(LINK_LIBS
${X11_X11_LIB}
${X11_Xrandr_LIB}
${LINK_LIBS}
)
ENDIF()
TARGET_LINK_LIBRARIES(sumwars ${LINK_LIBS})
IF(SUMWARS_POST_BUILD_COPY)
# Due to the fact that CMake can't yet target properly subconfigurations in multi-configuration environments
# (such as Visual Studio), make a special case using Visual Studio macros.
IF (MSVC)
ADD_CUSTOM_COMMAND(TARGET sumwars
POST_BUILD
COMMAND copy $(OutDir)$(TargetFileName) $(ProjectDir)$(TargetFileName)
)
ELSE ()
ADD_CUSTOM_COMMAND(TARGET sumwars
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sumwars${CMAKE_EXECUTABLE_SUFFIX} ${CMAKE_SOURCE_DIR}
)
ENDIF (MSVC)
ENDIF()
# install the application
install(TARGETS sumwars
RUNTIME DESTINATION "${SUMWARS_EXECUTABLE_DIR}")
# freedesktop.org icons and desktop files
# TODO: How do we do this on Windows? Installing start menu items.
#if (UNIX)
# install(FILES "packaging/sumwars.desktop"
# DESTINATION "share/applications")
#
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_16x16.png"
# DESTINATION "share/icons/hicolor/16x16/"
# RENAME "sumwars.png")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_24x24.png"
# DESTINATION "share/icons/hicolor/24x24/"
# RENAME "sumwars.png")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_32x32.png"
# DESTINATION "share/icons/hicolor/32x32/"
# RENAME "sumwars.png")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_48x48.png"
# DESTINATION "share/icons/hicolor/48x48/"
# RENAME "sumwars.png")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_64x64.png"
# DESTINATION "share/icons/hicolor/64x64/"
# RENAME "sumwars.png")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/icon/SumWarsIcon_128x128.png"
# DESTINATION "share/icons/hicolor/128x128/"
# RENAME "sumwars.png")
#endif()
install(FILES "AUTHORS" "COPYING" "README" # we intentionally avoid installing "INSTALL" here
DESTINATION "${SUMWARS_DOC_DIR}")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/share/data"
DESTINATION "${SUMWARS_SHARE_DIR}"
PATTERN ".git" EXCLUDE)
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/share/resources"
DESTINATION "${SUMWARS_SHARE_DIR}"
PATTERN ".git" EXCLUDE
PATTERN "icon" EXCLUDE)
if ("${SUMWARS_LANGUAGES}" STREQUAL "*")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/share/translation"
DESTINATION "${SUMWARS_SHARE_DIR}"
FILES_MATCHING PATTERN "*.mo"
PATTERN ".git" EXCLUDE
PATTERN "xmlgettext" EXCLUDE) # both pattern excludes are there to prevent the directories from being created
else()
SEPARATE_ARGUMENTS(SUMWARS_LANGUAGES)
foreach(i ${SUMWARS_LANGUAGES})
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/share/translation/${i}"
DESTINATION "${SUMWARS_SHARE_DIR}/translation"
FILES_MATCHING PATTERN "*.mo"
PATTERN ".git" EXCLUDE
PATTERN "xmlgettext" EXCLUDE) # both pattern excludes are there to prevent the directories from being created
endforeach()
endif()
if(WIN32)
STRING(REGEX REPLACE "cegui/include" "bin" CEGUI_BIN_DIR ${CEGUI_INCLUDE_DIR})
STRING(REGEX REPLACE ".lib" ".dll" LUA_BIN_DIR ${LUA_LIBRARY})
STRING(REGEX REPLACE "alut.lib" "alut.dll" ALUT_BIN_DIR ${ALUT_LIBRARY_OPTIMIZED})
STRING(REGEX REPLACE "lib/physfs.lib" "bin/physfs.dll" PHYSFS_BIN_DIR ${PHYSFS_LIBRARY})
install(DIRECTORY "${OGRE_PLUGIN_DIR_REL}/"
DESTINATION "."
FILES_MATCHING PATTERN "*.dll")
install(FILES
"${CEGUI_BIN_DIR}/CEGUIBase.dll"
"${CEGUI_BIN_DIR}/CEGUIOgreRenderer.dll"
"${CEGUI_BIN_DIR}/CEGUIExpatParser.dll"
"${CEGUI_BIN_DIR}/CEGUIFalagardWRBase.dll"
"${LUA_BIN_DIR}"
"${ALUT_BIN_DIR}"
"${PHYSFS_BIN_DIR}"
DESTINATION ".")
endif()
# only CPack code below this line
SET(CPACK_PACKAGE_NAME "sumwars")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Summoning Wars Role-Playing Game")
SET(CPACK_PACKAGE_VENDOR "Sumwars team")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
SET(CPACK_PACKAGE_VERSION_MAJOR "${SUMWARS_VERSION_MAJOR}")
SET(CPACK_PACKAGE_VERSION_MINOR "${SUMWARS_VERSION_MINOR}")
SET(CPACK_PACKAGE_VERSION_PATCH "${SUMWARS_VERSION_PATCH}")
SET(CPACK_SOURCE_GENERATOR TBZ2 ZIP)
SET(CPACK_GENERATOR NSIS DEB)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Sumwars team")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libogremain-1.7.3, libcegui, libois-1.3.0, libalut0, liblua5.1-0, libopenal1, libvorbis0a, libfreeimage3, libphysfs1, libxrandr2")
SET(CPACK_DEBIAN_PACKAGE_SECTION "games")
SET(CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
set(CPACK_SET_DESTDIR "ON")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "sumwars-${SUMWARS_SHORT_VERSION}" CACHE INTERNAL "tarball basename")
set(CPACK_SOURCE_IGNORE_FILES
# repository history should not be in source tarballs
"\\\\.hg.*"
# the rest is modelled after .hgignore
"build/"
"~$"
"\\\\.project"
"\\\\.cproject"
"\\\\.pydevproject"
"sumwars$"
"sumwars.exe$"
"\\\\.sumwars"
)
INCLUDE(CPack)