Hi all, <br /><br />I&#39;m using cmake to generate make file for xcode 3.13, I&#39;m using the following file structure to place different modules:<br /><br />Project Root<br />        |----CMakefile.txt  (1)<br />        |----gui<br />            |----CMakefile.txt   (2)<br />            |----src<br />            |----include<br />        |----wxstc<br />            |----CMakefile.txt   (3)<br />            |----src<br />            |----include<br />        |----... other modules<br /><br />Here&#39;s config in the first CMakefile.txt<br /><br />CMAKE_MINIMUM_REQUIRED(VERSION 2.6)<br /><br />PROJECT(HelloWorldApp)<br /><br />SET(WXWIDGETS_DEFINITIONS -D__WX__ -D__WXMAC__ -DwxUSE_UNICODE)<br /><br />ADD_DEFINITIONS(-DMODDED -DNOPCH -D_UNICODE -DUNICODE -D_LIB ${WXWIDGETS_DEFINITIONS})<br /><br />if(COMMAND cmake_policy)<br />  cmake_policy(SET CMP0003 NEW)<br />endif(COMMAND cmake_policy)<br /><br />add_subdirectory(gui)<br /><br /><br />Here&#39;s the config in the CMakefile.txt for sub module:<br />PROJECT(gui)<br /><br />FILE(GLOB_RECURSE inFiles <br />                src/*.cpp<br />                include/*.h<br />)<br /><br />ADD_LIBRARY(gui ${inFiles})<br /><br />INCLUDE_DIRECTORIES(include <br />        include<br />)<br /><br />Generate project files for xcode, then I got the error:<br />make: ../CMakeScripts/ReRunCMake.make: No such file or directory<br />make: *** No rule to make target `../CMakeScripts/ReRunCMake.make&#39;.  Stop.<br /><br />this error can be manual fix by change property for target/CMake Rerun from <br />    make -C .. -f ../CMakeScripts/ReRunCMake.make<br />     to<br />    make -C . -f ./CMakeScripts/ReRunCMake.make<br /><br />but then got another error:<br />make: *** No rule to make target `../../../wxstc/CMakeLists.txt&#39;, needed by `CMakeFiles/cmake.check_cache&#39;.  Stop.<br /><br /><br />Does anyone knows how to do? Is there something wrong in my CMakeList.txt file? or do I missed something?<br /><br />It works before when I was using VC6 in another project.<br /><br />Thanks.<br /><br />Best Regards<br /><br />Wei Xu