|
From: <ai...@us...> - 2014-01-13 03:13:33
|
Revision: 12936
http://sourceforge.net/p/plplot/code/12936
Author: airwin
Date: 2014-01-13 03:13:30 +0000 (Mon, 13 Jan 2014)
Log Message:
-----------
Choose ntk (if available) over wingcc as the device used for generic
interactive tests on Windows.
Modified Paths:
--------------
trunk/examples/CMakeLists.txt
Modified: trunk/examples/CMakeLists.txt
===================================================================
--- trunk/examples/CMakeLists.txt 2014-01-13 03:11:05 UTC (rev 12935)
+++ trunk/examples/CMakeLists.txt 2014-01-13 03:13:30 UTC (rev 12936)
@@ -423,13 +423,12 @@
if(PLD_xwin)
# Typically for Unix with X
set(generic_interactive_device xwin)
+elseif(PLD_ntk)
+ # Typically for all platforms if ntk is available but not xwin
+ set(generic_interactive_device ntk)
elseif(PLD_wingcc)
- # Typically for Windows without X
+ # Typically for Windows if -dev ntk is not available
set(generic_interactive_device wingcc)
-elseif(PLD_ntk)
- # A special test case used on Unix for when we have deliberately not
- # looked for X simply to test the non-X logic.
- set(generic_interactive_device ntk)
else(PLD_xwin)
set(generic_interactive_device)
endif(PLD_xwin)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|