>> cmake -DCMAKE_TOOLCHAIN_FILE:string="%~dp0\zosport.cmake" -G"Unix >> Makefiles" .\ > > You are building on Windows, yes? Whenever I try to use ".\" in a > command prompt, batch file or command file on Windows, it does horrible > things. I have to substitute a full or partial path. Could this be the > issue?
You have a "\z" in your variable CMAKE_TOOLCHAIN_FILE, this is probably not what you want. Use a forward slash to specify this path to CMake. Eike _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
