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:
authorJacques Beuarain <jacques.beaurain@gmail.com>2006-11-18 16:26:05 +0300
committerJacques Beuarain <jacques.beaurain@gmail.com>2006-11-18 16:26:05 +0300
commit0b036eb2d17136236f0e6bd3070d519fcd25835b (patch)
tree1581abf39f2912a540980bbffd1d697d314f282c /source/blender/makesdna/intern
parent047a71c32cf6f7efffd0a01576b3381984253ecc (diff)
CMake: Fix post build action for makesdna on other systems. This was broken during Windows work.
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesdna/intern/CMakeLists.txt b/source/blender/makesdna/intern/CMakeLists.txt
index fbdee9740d2..adac927cf55 100644
--- a/source/blender/makesdna/intern/CMakeLists.txt
+++ b/source/blender/makesdna/intern/CMakeLists.txt
@@ -36,8 +36,9 @@ ADD_EXECUTABLE(makesdna ${SRC} ${INC_FILES})
ADD_CUSTOM_COMMAND(TARGET makesdna
POST_BUILD
- COMMAND makesdna ${CMAKE_SOURCE_DIR}/source/blender/makesdna/intern/dna.c ${CMAKE_SOURCE_DIR}/source/blender/makesdna/
+ COMMAND ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/makesdna ${CMAKE_SOURCE_DIR}/source/blender/makesdna/intern/dna.c ${CMAKE_SOURCE_DIR}/source/blender/makesdna/
DEPENDS ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/makesdna
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}
)
+# WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}
+
MESSAGE(STATUS "Configuring makesdna")