[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r2199: Hey, we can hide the Universal binary option on non-OS X. (trunk)
Author: edmanm
Date: 2007-12-07 18:07:31 -0500 (Fri, 07 Dec 2007)
New Revision: 2199
Modified:
trunk/
trunk/CMakeLists.txt
Log:
r2272@lysithea: edmanm | 2007-12-07 18:02:10 -0500
Hey, we can hide the Universal binary option on non-OS X.
Property changes on: trunk
___________________________________________________________________
svk:merge ticket from /local/vidalia/trunk [r2272] on 0108964c-5b0b-4c9e-969f-e2288315d100
Modified: trunk/CMakeLists.txt
===================================================================
--- trunk/CMakeLists.txt 2007-12-07 22:52:14 UTC (rev 2198)
+++ trunk/CMakeLists.txt 2007-12-07 23:07:31 UTC (rev 2199)
@@ -40,7 +40,9 @@
include(VidaliaMacros.cmake)
## Define Vidalia-specific CMake options
-option(OSX_FAT_BINARY "Build Vidalia as a Universal binary." OFF)
+if (APPLE)
+ option(OSX_FAT_BINARY "Build Vidalia as a Universal binary." OFF)
+endif(APPLE)
## Add the actual source directories
add_subdirectory(src)