[Bf-blender-cvs] [4bd6423] master: Fix EXECUTABLE_OUTPUT_PATH binpath for OSX makefiles ( no CMAKE_BUILD_TYPE dir used here )

Jens Verwiebe noreply at git.blender.org
Mon Feb 3 12:58:32 CET 2014


Commit: 4bd6423b7efdb3a4d1c18d15af3cdc9d7f2e41b7
Author: Jens Verwiebe
Date:   Mon Feb 3 12:57:50 2014 +0100
https://developer.blender.org/rB4bd6423b7efdb3a4d1c18d15af3cdc9d7f2e41b7

Fix EXECUTABLE_OUTPUT_PATH binpath for OSX makefiles ( no CMAKE_BUILD_TYPE dir used here )

===================================================================

M	source/tests/CMakeLists.txt

===================================================================

diff --git a/source/tests/CMakeLists.txt b/source/tests/CMakeLists.txt
index 21b5ad9..9177d4a 100644
--- a/source/tests/CMakeLists.txt
+++ b/source/tests/CMakeLists.txt
@@ -38,7 +38,7 @@ if(APPLE)
 	if(${CMAKE_GENERATOR} MATCHES "Xcode")
 		set(TEST_BLENDER_EXE ${EXECUTABLE_OUTPUT_PATH}/$(CONFIGURATION)/blender.app/Contents/MacOS/blender)
 	else()
-		set(TEST_BLENDER_EXE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_BUILD_TYPE}/blender.app/Contents/MacOS/blender)
+		set(TEST_BLENDER_EXE ${EXECUTABLE_OUTPUT_PATH}/blender.app/Contents/MacOS/blender)
 	endif()
 else()
 	set(TEST_BLENDER_EXE ${EXECUTABLE_OUTPUT_PATH}/blender)




More information about the Bf-blender-cvs mailing list