-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCMakeLists.txt
46 lines (37 loc) · 1.34 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
cmake_minimum_required(VERSION 3.13)
cmake_policy(VERSION 3.13)
########################################################################################################################
project(fty_common_logging
VERSION 1.0.0
DESCRIPTION "Provides common logs"
)
########################################################################################################################
find_package(fty-cmake PATHS ${CMAKE_BINARY_DIR}/fty-cmake)
########################################################################################################################
etn_target(shared ${PROJECT_NAME}
PUBLIC_INCLUDE_DIR include
PUBLIC
fty_log.h
fty-log/fty_logger.h
SOURCES
src/fty_logger.cpp
fty_common_logging.pc.in
FLAGS -Wno-format-nonliteral
USES
log4cplus
USES_PUBLIC
fmt::fmt
)
set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION ${PROJECT_VERSION_MAJOR})
########################################################################################################################
etn_test_target(${PROJECT_NAME}
CONFIGS
test/conf/test-config.conf
SOURCES
test/main.cpp
FLAGS
-Wno-extra-semi-stmt
SUBDIR
test
)
########################################################################################################################