]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
Static libtclParam[_p] is successfully built
authorAndreas Neiser <neiser@kph.uni-mainz.de>
Wed, 26 Jun 2013 13:35:26 +0000 (15:35 +0200)
committerAndreas Neiser <neiser@kph.uni-mainz.de>
Wed, 26 Jun 2013 13:48:10 +0000 (15:48 +0200)
.gitignore [new file with mode: 0644]
allParam/CMakeLists.txt [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..83d7489
--- /dev/null
@@ -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 (file)
index 0000000..f4611ad
--- /dev/null
@@ -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()
+