FaceTracker icon indicating copy to clipboard operation
FaceTracker copied to clipboard

Adds CMake support.

Open adishavit opened this issue 8 years ago • 2 comments
trafficstars

adishavit avatar Jun 08 '17 12:06 adishavit

thanks so much! i'm happy to merge this if you can also add a (very short, couple sentence) explanation to the readme about how to use cmake to build the project.

kylemcdonald avatar Aug 21 '17 20:08 kylemcdonald

CMake is a build generator. Using it depends on the platform you are targeting.
When there's a CMakeLists.txt file, you run CMake on it with the target build system and it generates the makefiles, MSVC solutions or whatever build system you need.
It is relatively easy to use, but since it is a "meta"-tool the actual usage depends on your target platform and target build system. I don't really know what to write... Having this file is usually enough to indicate CMake support.

adishavit avatar Aug 22 '17 18:08 adishavit