]> git.donarmstrong.com Git - bamtools.git/blobdiff - CMakeLists.txt
Fixed: error in FilterTool - mishandling of ASCII tag values
[bamtools.git] / CMakeLists.txt
index f4f23bdce12166fd37c77ff14c9181e95f98b5f2..3e81b1a2739605a10175a99bc3f7c639d8c64a26 100644 (file)
@@ -11,9 +11,6 @@ project( BamTools )
 # Cmake requirements
 cmake_minimum_required( VERSION 2.6.4 )
 
-# init CTest
-enable_testing()
-
 # Force the build directory to be different from source directory
 macro( ENSURE_OUT_OF_SOURCE_BUILD MSG )
     string( COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" insource )
@@ -34,8 +31,8 @@ ensure_out_of_source_build( "
 
 # set BamTools version information
 set( BamTools_VERSION_MAJOR 2 )
-set( BamTools_VERSION_MINOR 0 )
-set( BamTools_VERSION_BUILD 5 )
+set( BamTools_VERSION_MINOR 2 )
+set( BamTools_VERSION_BUILD 3 )
 
 # set our library and executable destination dirs
 set( EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/bin" )
@@ -45,6 +42,22 @@ set( LIBRARY_OUTPUT_PATH    "${CMAKE_SOURCE_DIR}/lib" )
 set( CMAKE_BUILD_TYPE Release )
 add_definitions( -Wall -D_FILE_OFFSET_BITS=64 )
 
+# -----------------------------------------------
+# handle platform-/environment-specific defines
+
+# If planning to run in Node.js environment, run:
+# cmake -DEnableNodeJS=true
+if( EnableNodeJS )
+    add_definitions( -DSYSTEM_NODEJS=1 )
+endif()
+
+# If running on SunOS
+if( "${CMAKE_SYSTEM_NAME}" MATCHES "SunOS" )
+    add_definitions( -DSUN_OS )
+endif()
+
+# -------------------------------------------
+
 # add our includes root path
 include_directories( src )