blob: 03ac4bc9f242dd0939c59a38975e87c7dbe2cf5e (
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
|
# -*- cmake -*-
project(llxml)
include(00-Common)
include(LLCommon)
include(LLWindow)
set(llxml_SOURCE_FILES
llcontrol.cpp
llxmlnode.cpp
llxmlparser.cpp
llxmltree.cpp
)
set(llxml_HEADER_FILES
CMakeLists.txt
llcontrol.h
llxmlnode.h
llxmlparser.h
llxmltree.h
)
list(APPEND llxml_SOURCE_FILES ${llxml_HEADER_FILES})
add_library (llxml ${llxml_SOURCE_FILES})
# Libraries on which this library depends, needed for Linux builds
# Sort by high-level to low-level
target_link_libraries( llxml
llfilesystem
llmath
llcommon
ll::expat
ll::SDL
)
target_include_directories( llxml INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
include(LibraryInstall)
# tests
if (LL_TESTS)
# unit tests
SET(llxml_TEST_SOURCE_FILES
# none yet!
)
LL_ADD_PROJECT_UNIT_TESTS(llxml "${llxml_TEST_SOURCE_FILES}")
# integration tests
# set(TEST_DEBUG on)
set(test_libs
llxml
llmath
llcommon
)
LL_ADD_INTEGRATION_TEST(llcontrol "" "${test_libs}")
endif (LL_TESTS)
|