Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-25 08:23:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-25 08:23:58 +0300
commit06b04fa8862eee030ea4024f020992664c3457fe (patch)
tree774684867d6ac3539956ee0ba1e268a49deb604f /CMakeLists.txt
parent5f8fa29755a062a3dff4a574c904f5e24cc48cca (diff)
dont return a system path if cmake's 'WITH_INSTALL_PORTABLE' is enabled. this way portable builds wont find scripts in /usr/share.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 73437c63635..81263095bf8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -111,11 +111,7 @@ endif()
# 3D format support
# disable opencollada on non-apple unix because opencollada has no package for debian
-if(UNIX AND NOT APPLE)
- option(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org)" OFF)
-else()
- option(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org)" OFF)
-endif()
+option(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org)" OFF)
# Sound output
option(WITH_SDL "Enable SDL for sound and joystick support" ON)