blob: 434b58f5c7172f8692f3c283cd47a3f4b72703ca (
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
|
project(login)
include(00-Common)
include(LLCommon)
include(LLMath)
include(LLXML)
include(Pth)
include_directories(
${LLCOMMON_INCLUDE_DIRS}
${LLMATH_INCLUDE_DIRS}
${LLXML_INCLUDE_DIRS}
${PTH_INCLUDE_DIRS}
)
set(login_SOURCE_FILES
lllogin.cpp
)
set(login_HEADER_FILES
lllogin.h
)
set_source_files_properties(${login_HEADER_FILES}
PROPERTIES HEADER_FILE_ONLY TRUE)
list(APPEND
login_SOURCE_FILES
${login_HEADER_FILES}
)
add_library(lllogin
${login_SOURCE_FILES}
)
target_link_libraries(lllogin
${LLCOMMON_LIBRARIES}
${LLMATH_LIBRARIES}
${LLXML_LIBRARIES}
${PTH_LIBRARIES}
)
ADD_BUILD_TEST(lllogin lllogin "")
|