kosta777 / parallel-genomeseq

Parallelization of popular genome sequencing algorithms
4 stars 1 forks source link

Add CMake Support #1

Closed huanglangwen closed 4 years ago

huanglangwen commented 4 years ago

Is it simpler to build using cmake instead of makefile? And I think cmake could provide better IDE support. Here is the workflow:

#Release
cd build
cmake ..
make
cd ../bin
./parseqal
#Debug
cd build
cmake .. -DDEBUG=ON
make