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.
15 lines
474 B
15 lines
474 B
cmake_minimum_required (VERSION 2.6)
|
|
project (CPP_UTILS_LIB)
|
|
|
|
set(CMAKE_CXX_COMPILER "/usr/lib/colorgcc/bin/g++")
|
|
|
|
set (CXX_FLAGS "-Wall -Wextra -pedantic -Weffc++ -Wshadow "
|
|
"-ggdb -fprofile-arcs -ftest-coverage -std=c++0x")
|
|
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 mysqlclient)
|