cmake
, and supply the root directory of the source directory as the parameter (specifically, the location of the CMakeLists.txt file)
make
, and everything should hopefully work...
e.g. Your source directory
some_dir\ngs_aligner\src
some_dir\ngs_aligner\build
In some_dir\ngs_aligner\build
, simply type:
cmake ..\src
Side note, to optimize the speed of your program, you can do a "Release" build (using the above example):
build
directory
ccmake ..\src
(note extra c
)
CMAKE_BUILD_TYPE
, press [enter] to edit make
as usual...