|
From: <bo...@us...> - 2008-04-26 07:44:14
|
Revision: 130
http://gearbox.svn.sourceforge.net/gearbox/?rev=130&view=rev
Author: borax00
Date: 2008-04-26 00:44:22 -0700 (Sat, 26 Apr 2008)
Log Message:
-----------
now compiles
Modified Paths:
--------------
gearbox/trunk/submitted/gbxgarminacfr/CMakeLists.txt
gearbox/trunk/submitted/gbxgarminacfr/test/test.cpp
Modified: gearbox/trunk/submitted/gbxgarminacfr/CMakeLists.txt
===================================================================
--- gearbox/trunk/submitted/gbxgarminacfr/CMakeLists.txt 2008-04-26 07:41:06 UTC (rev 129)
+++ gearbox/trunk/submitted/gbxgarminacfr/CMakeLists.txt 2008-04-26 07:44:22 UTC (rev 130)
@@ -9,6 +9,8 @@
# SET( int_libs GbxUtilAcfr GbxSerialAcfr GbxGpsUtilAcfr )
GBX_REQUIRE_TARGETS( build LIB ${lib_name} ${int_libs} )
+SET( private_libs GbxGpsUtilAcfr )
+
IF( build )
ADD_SUBDIRECTORY( gbxgpsutilacfr )
@@ -17,7 +19,7 @@
FILE( GLOB hdrs *.h )
FILE( GLOB srcs *.cpp )
- SET( dep_libs ${int_libs} )
+ SET( dep_libs ${int_libs} ${private_libs} )
GBX_ADD_LIBRARY( ${lib_name} SHARED ${srcs} )
TARGET_LINK_LIBRARIES( ${lib_name} ${dep_libs} )
Modified: gearbox/trunk/submitted/gbxgarminacfr/test/test.cpp
===================================================================
--- gearbox/trunk/submitted/gbxgarminacfr/test/test.cpp 2008-04-26 07:41:06 UTC (rev 129)
+++ gearbox/trunk/submitted/gbxgarminacfr/test/test.cpp 2008-04-26 07:44:22 UTC (rev 130)
@@ -85,9 +85,6 @@
device->read( data );
cout<<"Test: Got data "<<i+1<<" of "<<numReads<<endl;
-
- if ( data.haveWarnings )
- cout << "got warnings: " << data.warnings << endl;
}
catch ( const std::exception& e )
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|