]> Creatis software - cpPlugins.git/commitdiff
...
authorLeonardo Flórez-Valencia <florez-l@javeriana.edu.co>
Wed, 11 Oct 2017 19:03:56 +0000 (14:03 -0500)
committerLeonardo Flórez-Valencia <florez-l@javeriana.edu.co>
Wed, 11 Oct 2017 19:03:56 +0000 (14:03 -0500)
lib/tclap/CMakeLists.txt
lib/tclap/Version.cxx.in [new file with mode: 0644]

index 08a96649f2be75a03fc877e67a1da618857c6231..62ab7ad333b4df5be92ed920152ea802b921ae40 100644 (file)
@@ -4,14 +4,12 @@
 
 option(cpPlugins_BUILD_tclap "Build TCLAP." OFF)
 if(cpPlugins_BUILD_tclap)
-
   BuildLibrary(
     tclap SHARED
     INSTALL_ALL
     SOURCE .
     VERSION ${prj_MAJ} ${prj_MIN} ${prj_REL}
     )
-
 endif(cpPlugins_BUILD_tclap)
 
 ## eof - $RCSfile$
diff --git a/lib/tclap/Version.cxx.in b/lib/tclap/Version.cxx.in
new file mode 100644 (file)
index 0000000..ad3e03e
--- /dev/null
@@ -0,0 +1,14 @@
+// =========================================================================
+// @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
+// =========================================================================
+
+#include <tclap_export.h>
+#include <string>
+
+// -------------------------------------------------------------------------
+std::string TCLAP_EXPORT version( )
+{
+  return( "@prj_MAJ@.@prj_MIN@.@prj_REL@" );
+}
+
+// eof - $RCSfile$