How to setup public/private/interface in cmake to include lib config file from user
I developed a library with lib.c
and lib.h
, which has its own CMakeLists.txt
file, but to properly operate, this library includes lib_options.h
file from the lib.h
header. lib_options.h
file must be provided by the user.
How to setup public/private/interface in cmake to include lib config file from user
I developed a library with lib.c
and lib.h
, which has its own CMakeLists.txt
file, but to properly operate, this library includes lib_options.h
file from the lib.h
header. lib_options.h
file must be provided by the user.