Revision: 55173
          http://brlcad.svn.sourceforge.net/brlcad/?rev=55173&view=rev
Author:   starseeker
Date:     2013-04-17 19:01:47 +0000 (Wed, 17 Apr 2013)
Log Message:
-----------
That macro came from the stepcode cmake logic, which isn't guaranteed to be 
available.

Modified Paths:
--------------
    brlcad/trunk/src/other/poly2tri/CMakeLists.txt

Modified: brlcad/trunk/src/other/poly2tri/CMakeLists.txt
===================================================================
--- brlcad/trunk/src/other/poly2tri/CMakeLists.txt      2013-04-17 18:53:46 UTC 
(rev 55172)
+++ brlcad/trunk/src/other/poly2tri/CMakeLists.txt      2013-04-17 19:01:47 UTC 
(rev 55173)
@@ -11,7 +11,10 @@
 set(P2T_LIB_NAME p2t)
 
 # Testing option
-OPTION_WITH_DEFAULT(P2T_TESTS  "Build libp2t tests" NO)
+if(NOT DEFINED P2T_TESTS)
+  set(P2T_TESTS OFF)
+endif(NOT DEFINED P2T_TESTS)
+OPTION(P2T_TESTS "Build libp2t tests" ${P2T_TESTS})
 mark_as_advanced(P2T_TESTS)
 if(P2T_TESTS)
   include(CTest)

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


------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to