Changeset 351cfac214128c936ab7e6dd684a7d589547495c

Show
Ignore:
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
  • projects/macosx/framework/VLCKit.xcodeproj/project.pbxproj

    rdab05ad r351cfac  
    427427            ); 
    428428            outputPaths = ( 
    429                 $SRCROOT/../../../CMakeLists.txt
     429                "$(SRCROOT)/../../../CMakeLists.txt"
    430430            ); 
    431431            runOnlyForDeploymentPostprocessing = 0; 
    432432            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"; 
    434434            showEnvVarsInLog = 0; 
    435435        }; 
     
    470470            ); 
    471471            inputPaths = ( 
    472                 $SRCROOT/../../../CMakeLists.txt, 
    473472            ); 
    474473            outputPaths = ( 
     
    477476            runOnlyForDeploymentPostprocessing = 0; 
    478477            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"; 
    480479            showEnvVarsInLog = 0; 
    481480        };