Would you be interested in making a switch to cmake-based installation? For the project I am working on, I have started removing Makefiles and writing CMakeLists.txt files to
To make the sample functions and tests work (enforcing C++11 features in a portable way), I guess you need a CMake version of at least 3.1.3 (dates back to Feb 12, 2015).
Once finished, the build, test, and install processes will be portable among systems that support CMake. Moreover, all the *.cpp files in test-high directory will be removed, as they are simply compile definitions used on pcg-test.cpp and pcg-test-noadvance.cpp.
If you are interested, I can make a PR as soon as I finish writing the CMake scripts.
Would you be interested in making a switch to cmake-based installation? For the project I am working on, I have started removing
Makefiles and writingCMakeLists.txtfiles toTo make the sample functions and tests work (enforcing C++11 features in a portable way), I guess you need a CMake version of at least 3.1.3 (dates back to Feb 12, 2015).
Once finished, the build, test, and install processes will be portable among systems that support CMake. Moreover, all the
*.cppfiles intest-highdirectory will be removed, as they are simply compile definitions used onpcg-test.cppandpcg-test-noadvance.cpp.If you are interested, I can make a PR as soon as I finish writing the CMake scripts.