cmake_minimum_required (VERSION 2.6) set (COMMON_LIB_SRC_FILES Timer.cpp Utils.cpp exception/Backtrace.cpp exception/Errnum.cpp exception/Exception.cpp exception/strerror_r_wrapper.cpp threading/ChildProcess.cpp threading/Mutex.cpp threading/Threading.cpp) add_library (ctacommon SHARED ${COMMON_LIB_SRC_FILES}) target_link_libraries (ctacommon ${SQLITE3_LIBRARY_RELEASE} pthread) set (COMMON_UNIT_TESTS_LIB_SRC_FILES UtilsTest.cpp) add_library (ctacommonunittests SHARED ${COMMON_UNIT_TESTS_LIB_SRC_FILES})