You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
380 B
12 lines
380 B
cmake_minimum_required (VERSION 2.6)
|
|
project (CPP_UTILS_LIB)
|
|
|
|
set (CXX_FLAGS "-Wall -Wextra -pedantic -Weffc++ -Wshadow -ggdb -fprofile-arcs -ftest-coverage")
|
|
add_definitions( ${CXX_FLAGS} )
|
|
|
|
include_directories (../include)
|
|
aux_source_directory(../src CPP_UTILS_LIB_SOURCES)
|
|
|
|
add_library (CppUtils SHARED ${CPP_UTILS_LIB_SOURCES})
|
|
target_link_libraries(CppUtils pthread rt gcov)
|