Changeset 351cfac214128c936ab7e6dd684a7d589547495c
- Timestamp:
- 09/02/08 23:27:33
(8 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202596053 +0000
- git-parent:
[3404e6bfc5c46bea3c843d48d0afb28c51e3b3b0]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202596053 +0000
- Message:
macosx/framework: Fix a bit the cmake generation script.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdab05ad |
r351cfac |
|
| 427 | 427 | ); |
|---|
| 428 | 428 | outputPaths = ( |
|---|
| 429 | | $SRCROOT/../../../CMakeLists.txt, |
|---|
| | 429 | "$(SRCROOT)/../../../CMakeLists.txt", |
|---|
| 430 | 430 | ); |
|---|
| 431 | 431 | runOnlyForDeploymentPostprocessing = 0; |
|---|
| 432 | 432 | shellPath = /bin/sh; |
|---|
| 433 | | shellScript = "top_srcdir=`pwd`/../../..\n\nif test $ACTION = \"clean\"\nthen\n rm -f $top_srcdir/CMakeLists.txt\n exit 0\nfi\n\ncd $top_srcdir && ./extras/buildsystem/cmake/scripts/convert_vlc_to_cmake.sh"; |
|---|
| | 433 | shellScript = "top_srcdir=`pwd`/../../..\n\nif test $ACTION = \"clean\"\nthen\n rm -f $SYMROOT/vlc_build_dir/CMakeLists.txt\n exit 0\nfi\n\necho \"$SRCROOT/../../../CMakeLists.txt doesn't exists\"\ncd $top_srcdir && ./extras/buildsystem/cmake/scripts/convert_vlc_to_cmake.sh\n"; |
|---|
| 434 | 434 | showEnvVarsInLog = 0; |
|---|
| 435 | 435 | }; |
|---|
| … | … | |
| 470 | 470 | ); |
|---|
| 471 | 471 | inputPaths = ( |
|---|
| 472 | | $SRCROOT/../../../CMakeLists.txt, |
|---|
| 473 | 472 | ); |
|---|
| 474 | 473 | outputPaths = ( |
|---|
| … | … | |
| 477 | 476 | runOnlyForDeploymentPostprocessing = 0; |
|---|
| 478 | 477 | shellPath = /bin/sh; |
|---|
| 479 | | shellScript = "if test $ACTION = \"clean\"\nthen\n exit 0\nfi\ntop_srcdir=`pwd`/../../..\nmkdir -p $SYMROOT/vlc_build_dir\nrm -Rf $top_srcdir/CMakeCache.txt\ncd $SYMROOT/vlc_build_dir && $top_srcdir/extras/contrib/bin/cmake $top_srcdir"; |
|---|
| | 478 | shellScript = "echo $ACTION\nif test $ACTION = \"clean\"\nthen\n\trm -Rf $SYMROOT/vlc_build_dir\n exit 0\nfi\n\ntop_srcdir=`pwd`/../../..\n\nif ! test -e $SYMROOT/vlc_build_dir/CMakeCache.txt\nthen\n\techo \"$SYMROOT/vlc_build_dir/CMakeCache.txt exists\"\n\tmkdir -p $SYMROOT/vlc_build_dir\n\trm -Rf $top_srcdir/CMakeCache.txt\n\tcd $SYMROOT/vlc_build_dir && $top_srcdir/extras/contrib/bin/cmake $top_srcdir -DENABLE_NO_SYMBOL_CHECK=ON$top_srcdir\nfi"; |
|---|
| 480 | 479 | showEnvVarsInLog = 0; |
|---|
| 481 | 480 | }; |
|---|