문제

I am working on a project written in c++ and using CMake to compile and make to build source files. I also have an external library which use "waf" for compiling and building. I am wondering How I can include this external library in my CMakeList file and use it withing the main project.

Thanks for you r help in advance.

도움이 되었습니까?

해결책

Take a look at CMake's ExternalProject module.

This can be used to build arbitrary third-party dependencies from within CMake, even if they use a build system different from CMake themselves.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top