From c3ca613045f2f1b12481113fdb1c1b0d2122d121 Mon Sep 17 00:00:00 2001 From: Andreas Neiser Date: Wed, 26 Jun 2013 15:35:26 +0200 Subject: [PATCH] Static libtclParam[_p] is successfully built --- .gitignore | 2 ++ allParam/CMakeLists.txt | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 allParam/CMakeLists.txt 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() + -- 2.43.0