How to configure Eclipse CDT for cmake?
In Eclipse-CDT you do not create cmake projects but you import cmake projects. This is what you should do: Say the source of your CMake project named “Planner” is located in D:/javaworkspace/src/Planner Create a folder (the folders NEED to be parallel to each other): D:/javaworkspace/build/Planner Go to the folder D:/javaworkspace/build/Planner and run CMake using the Eclipse generator: cmake ../../src/Planner -G”Eclipse CDT4 … Read more