Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/CMakeLists.txt
blob: 0934308cdab995ff07fcf71e95d2a46a29754642 (plain)
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
INCLUDE_DIRECTORIES (
    ${STAR_EXTERN_INCLUDES}
    ${STAR_CORE_INCLUDES}
    ${STAR_BASE_INCLUDES}
    ${STAR_GAME_INCLUDES}
    ${STAR_PLATFORM_INCLUDES}
    ${STAR_APPLICATION_INCLUDES}
    ${STAR_RENDERING_INCLUDES}
    ${STAR_WINDOWING_INCLUDES}
    ${STAR_FRONTEND_INCLUDES}
  )

SET (star_frontend_HEADERS
    StarActionBar.hpp
    StarAiInterface.hpp
    StarBaseScriptPane.hpp
    StarBindingsMenu.hpp
    StarBookmarkInterface.hpp
    StarChat.hpp
    StarCharCreation.hpp
    StarCharSelection.hpp
    StarChatBubbleSeparation.hpp
    StarChatBubbleManager.hpp
    StarCinematic.hpp
    StarClientCommandProcessor.hpp
    StarClipboardLuaBindings.hpp
    StarCodexInterface.hpp
    StarConfirmationDialog.hpp
    StarContainerInterface.hpp
    StarContainerInteractor.hpp
    StarCraftingInterface.hpp
    StarErrorScreen.hpp
    StarGraphicsMenu.hpp
    StarInventory.hpp
    StarInterfaceCursor.hpp
    StarInterfaceLuaBindings.hpp
    StarItemTooltip.hpp
    StarJoinRequestDialog.hpp
    StarKeybindingsMenu.hpp
    StarMainInterface.hpp
    StarMainInterfaceTypes.hpp
    StarMainMixer.hpp
    StarMerchantInterface.hpp
    StarModsMenu.hpp
    StarNameplatePainter.hpp
    StarOptionsMenu.hpp
    StarPopupInterface.hpp
    StarQuestIndicatorPainter.hpp
    StarQuestInterface.hpp
    StarQuestTracker.hpp
    StarRadioMessagePopup.hpp
    StarTeamBar.hpp
    StarTitleScreen.hpp
    StarScriptPane.hpp
    StarSimpleTooltip.hpp
    StarSongbookInterface.hpp
    StarStatusPane.hpp
    StarTeleportDialog.hpp
    StarVoice.hpp
    StarVoiceLuaBindings.hpp
    StarVoiceSettingsMenu.hpp
    StarWireInterface.hpp
  )

SET (star_frontend_SOURCES
    StarActionBar.cpp
    StarAiInterface.cpp
    StarBaseScriptPane.cpp
    StarBindingsMenu.cpp
    StarBookmarkInterface.cpp
    StarChat.cpp
    StarCharCreation.cpp
    StarCharSelection.cpp
    StarChatBubbleSeparation.cpp
    StarChatBubbleManager.cpp
    StarCinematic.cpp
    StarClientCommandProcessor.cpp
    StarClipboardLuaBindings.cpp
    StarCodexInterface.cpp
    StarConfirmationDialog.cpp
    StarContainerInterface.cpp
    StarContainerInteractor.cpp
    StarCraftingInterface.cpp
    StarErrorScreen.cpp
    StarGraphicsMenu.cpp
    StarInventory.cpp
    StarInterfaceCursor.cpp
    StarInterfaceLuaBindings.cpp
    StarItemTooltip.cpp
    StarJoinRequestDialog.cpp
    StarKeybindingsMenu.cpp
    StarMainInterface.cpp
    StarMainInterfaceTypes.cpp
    StarMainMixer.cpp
    StarMerchantInterface.cpp
    StarModsMenu.cpp
    StarNameplatePainter.cpp
    StarOptionsMenu.cpp
    StarPopupInterface.cpp
    StarQuestIndicatorPainter.cpp
    StarQuestInterface.cpp
    StarQuestTracker.cpp
    StarRadioMessagePopup.cpp
    StarTeamBar.cpp
    StarTitleScreen.cpp
    StarScriptPane.cpp
    StarSimpleTooltip.cpp
    StarSongbookInterface.cpp
    StarStatusPane.cpp
    StarTeleportDialog.cpp
    StarVoice.cpp
    StarVoiceLuaBindings.cpp
    StarVoiceSettingsMenu.cpp
    StarWireInterface.cpp
  )

ADD_LIBRARY (star_frontend OBJECT ${star_frontend_SOURCES} ${star_frontend_HEADERS})

IF(STAR_PRECOMPILED_HEADERS)
  TARGET_PRECOMPILE_HEADERS (star_frontend REUSE_FROM star_core)
ENDIF()