Revision: 8172
          http://playerstage.svn.sourceforge.net/playerstage/?rev=8172&view=rev
Author:   gbiggs
Date:     2009-08-04 03:48:04 +0000 (Tue, 04 Aug 2009)

Log Message:
-----------
Fixed not-building C++ examples

Modified Paths:
--------------
    code/player/trunk/client_libs/CMakeLists.txt
    code/player/trunk/client_libs/libplayerc++/CMakeLists.txt

Modified: code/player/trunk/client_libs/CMakeLists.txt
===================================================================
--- code/player/trunk/client_libs/CMakeLists.txt        2009-08-04 03:06:07 UTC 
(rev 8171)
+++ code/player/trunk/client_libs/CMakeLists.txt        2009-08-04 03:48:04 UTC 
(rev 8172)
@@ -2,3 +2,4 @@
 ADD_SUBDIRECTORY (libplayerc)
 ADD_SUBDIRECTORY (libplayerc++)
 MESSAGE (STATUS "============================")
+

Modified: code/player/trunk/client_libs/libplayerc++/CMakeLists.txt
===================================================================
--- code/player/trunk/client_libs/libplayerc++/CMakeLists.txt   2009-08-04 
03:06:07 UTC (rev 8171)
+++ code/player/trunk/client_libs/libplayerc++/CMakeLists.txt   2009-08-04 
03:48:04 UTC (rev 8172)
@@ -35,12 +35,12 @@
             IF (USE_BOOST_THREAD)
                 SET (BOOST_COMPONENTS thread)
             ELSE (USE_BOOST_THREAD)
-                SET (HAVE_BOOST_THREAD FALSE)
+                SET (HAVE_BOOST_THREAD FALSE CACHE INTERNAL "Is the 
Boost::Thread library present")
             ENDIF (USE_BOOST_THREAD)
             IF (USE_BOOST_SIGNALS)
                 SET (BOOST_COMPONENTS ${BOOST_COMPONENTS} signals)
             ELSE (USE_BOOST_SIGNALS)
-                SET (HAVE_BOOST_SIGNALS FALSE)
+                SET (HAVE_BOOST_SIGNALS FALSE CACHE INTERNAL "Is the 
Boost::Signals library present")
             ENDIF (USE_BOOST_SIGNALS)
             FIND_PACKAGE (Boost COMPONENTS ${BOOST_COMPONENTS})
             IF (Boost_FOUND)
@@ -53,7 +53,7 @@
                     STRING (REGEX REPLACE "^lib" "" boostThreadLib 
${boostThreadLib})
                     PLAYERCC_ADD_LINK_LIB (${boostThreadLib})
                     SET (boostIncludeDir ${Boost_INCLUDE_DIR})
-                    SET (HAVE_BOOST_THREAD TRUE)
+                    SET (HAVE_BOOST_THREAD TRUE CACHE INTERNAL "Is the 
Boost::Thread library present")
                     MESSAGE (STATUS
                             "PlayerC++ client library will be built with 
Boost::Thread support.")
                 ELSE (Boost_THREAD_FOUND)
@@ -66,7 +66,7 @@
                     STRING (REGEX REPLACE "^lib" "" boostSignalsLib 
${boostSignalsLib})
                     PLAYERCC_ADD_LINK_LIB (${boostSignalsLib})
                     SET (boostIncludeDir ${Boost_INCLUDE_DIR})
-                    SET (HAVE_BOOST_SIGNALS TRUE)
+                    SET (HAVE_BOOST_SIGNALS TRUE CACHE INTERNAL "Is the 
Boost::Signals library present")
                     MESSAGE (STATUS
                             "PlayerC++ client library will be built with 
Boost::Signals support.")
                 ELSE (Boost_SIGNALS_FOUND)
@@ -82,7 +82,7 @@
             FIND_PACKAGE (Boost)
             IF (Boost_FOUND)
                 # For 2.4, assume that if boost is found then both signals and 
threads are present
-                SET (HAVE_BOOST_THREAD TRUE INTERNAL)
+                SET (HAVE_BOOST_THREAD TRUE CACHE INTERNAL "Is the 
Boost::Thread library present")
                 IF (PLAYER_OS_OSX)
                     OPTION (Boost_USE_MULTITHREAD "Use the multithreaded 
versions of the Boost libraries" ON)
                 ELSE (PLAYER_OS_OSX)
@@ -118,7 +118,7 @@
                              Boost::Thread library not found.")
                 ENDIF (HAVE_BOOST_THREAD)
 
-                SET (HAVE_BOOST_SIGNALS TRUE INTERNAL)
+                SET (HAVE_BOOST_SIGNALS TRUE CACHE INTERNAL "Is the 
Boost::Signals library present")
                 IF (HAVE_BOOST_SIGNALS)
                     OPTION (USE_BOOST_SIGNALS "Use the Boost signalling 
library" ON)
                     MARK_AS_ADVANCED (USE_BOOST_SIGNALS)
@@ -247,3 +247,4 @@
                                       playererror.h
                                       utility.h)
 ENDIF (BUILD_PLAYERCC)
+


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Playerstage-commit mailing list
Playerstage-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to