From: Andreas Neiser Date: Wed, 26 Jun 2013 13:35:26 +0000 (+0200) Subject: Static libtclParam[_p] is successfully built X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=c3ca613045f2f1b12481113fdb1c1b0d2122d121;p=daqdata.git Static libtclParam[_p] is successfully built --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83d7489 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Cmake Build directories +/build*/ \ No newline at end of file diff --git a/allParam/CMakeLists.txt b/allParam/CMakeLists.txt new file mode 100644 index 0000000..f4611ad --- /dev/null +++ b/allParam/CMakeLists.txt @@ -0,0 +1,21 @@ +message(STATUS "Configuring allParam/tcl...") + +find_package(TCL QUIET) +if(NOT TCL_FOUND) + message(FATAL_ERROR "TCL is required, forgot to install the -dev package?") +endif() +include_directories(${TCL_INCLUDE_PATH}) + +add_library(tclParam STATIC "tcl/tclParam.c") +#target_link_libraries(tclParam ${TCL_LIBRARY}) + +# don't know if the threads enabled lib +# is needed at all... but it's easy with cmake ^-^ +set(CMAKE_THREAD_PREFER_PTHREAD "ON") +find_package(Threads QUIET) +if(Threads_FOUND) + add_library(tclParam_p STATIC "tcl/tclParam.c") + set_target_properties(tclParam_p PROPERTIES COMPILE_DEFINITIONS PTHREADS) + #target_link_libraries(tclParam_p ${TCL_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) +endif() +