comparison common/CMakeLists.txt @ 0:a4671277546c tip

created the repository for the thymian project
author ferencd
date Tue, 17 Aug 2021 11:19:54 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1 cmake_minimum_required (VERSION 3.14)
2
3 set(project common)
4
5 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
6
7 set(${project}_src
8 common.cpp
9 logger.cpp
10 words.cpp
11 logstream.cpp
12 logstreamhelper.h
13 url_breaker.cpp
14 )
15
16 add_library(${project} STATIC ${${project}_src})
17
18
19 message("Common links with: ${project_libs}")
20 target_link_libraries(${project} ${CONAN_LIBS} tinyxml fpaq0 cxxtools pthread m stdc++)