|
From: <rus...@us...> - 2009-06-10 06:45:05
|
Revision: 419
http://gearbox.svn.sourceforge.net/gearbox/?rev=419&view=rev
Author: russo2503v
Date: 2009-06-10 06:44:20 +0000 (Wed, 10 Jun 2009)
Log Message:
-----------
debug statements and formatting
Modified Paths:
--------------
gearbox/trunk/cmake/TargetUtils.cmake
Modified: gearbox/trunk/cmake/TargetUtils.cmake
===================================================================
--- gearbox/trunk/cmake/TargetUtils.cmake 2009-06-08 23:11:52 UTC (rev 418)
+++ gearbox/trunk/cmake/TargetUtils.cmake 2009-06-10 06:44:20 UTC (rev 419)
@@ -69,12 +69,15 @@
if( ${type} STREQUAL SHARED )
set( libType SHARED )
- ELSEIF( ${type} STREQUAL STATIC )
+ elseif( ${type} STREQUAL STATIC )
set( libType STATIC )
else( ${type} STREQUAL SHARED )
set( libType ${GBX_DEFAULT_LIB_TYPE} )
endif( ${type} STREQUAL SHARED )
+# message( STATUS "DEBUG: adding library '${name}' of type '${type}' (resolved to '${libType}') with version '${soversion}'" )
+# message( STATUS "DEBUG: from source files: ${ARGN}" )
+
add_library( ${name} ${libType} ${ARGN} )
SET_TARGET_PROPERTIES( ${name} PROPERTIES
VERSION ${soversion}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|