Hi everyone, I'm new to cmake, and there's something simple I don't know how to do. Here what I wrote in CMakeLists.txt so far:
project(test) subdirs(src) and in src directory I have another CMakeLists.txt : add_executable(testApp Applications/testApp.cpp) and what I want is that the compilation result of testApp.cpp goes into the ./bin directory, but by default it goes into ./src I use ccmake to set it to go to the bin directory, but when I run the compilation the makefile create a src/bin and use it. How to set cmake so it write the binary in ./bin ? Also, in src I have a lot of temporary files (cmake_install.cmake, CMakeFiles, ...), how can I avoid having this in my subdirectories ? Should I write one only CMakeLists.txt in the root directory ? Regards, Mehdi
_______________________________________________ CMake mailing list [email protected] http://www.cmake.org/mailman/listinfo/cmake
