Hey Zoey,
I don't know anything about SOLID, but the errormessage means, your
program needs to be linked against a library.
You could ask cmake to look for your SOLID library:
find_library(SOLID_LIBRARY solid)
if(NOT SOLID_LIBRARY)
message(ERROR "please specify the library for SOLID")
endif(
Hello everyone,
I am new to using CMake and I am trying to compile a program that uses two
libraries, one of which needs to be built using CMake, and the other, that
utilizes its own build system(the Makefiles were generated using ./configure).
The two libraries are CGAL and SOLID (for collisi