MakeFile not being produced #1043
-
I am trying to update the newest version of JSBSim but I am not able to make the project with CMake (which is desired over visual studio). I follow the instructions of making a build directory, changing directories into the new build folder, running I have seen that a possible reason for this error is because a make file is not being produced. I am not sure if that is the case here though |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @hudkinsnoah, Even though you are not using Visual Studio, I assume you are using the Microsoft C++ compiler. In such a case the command to build JSBSim is cmake --build . --config RelWithDebInfo This command should be run from the |
Beta Was this translation helpful? Give feedback.
Hi @hudkinsnoah,
Even though you are not using Visual Studio, I assume you are using the Microsoft C++ compiler. In such a case the command to build JSBSim is
This command should be run from the
build
folder and will build all the libraries and executables under the folderbuild\RelWithDebInfo
. Of course, if you want to get a debug (resp. release) build, you should replaceRelWithDebInfo
withDebug
(resp.Release
)