devernay / cminpack

A C/C++ rewrite of the MINPACK software (originally in FORTRAN) for solving nonlinear equations and nonlinear least squares problems
http://devernay.free.fr/hacks/cminpack/
145 stars 63 forks source link

Fix CMake usage for freebsd #62

Closed imciner2 closed 3 months ago

imciner2 commented 3 months ago

CMake requires that target_link_libraries calls must either all use the PUBLIC/PRIVATE specifiers, or none use them. So update the FreeBSD-specific call to use the specifier like the rest of them.

devernay commented 3 months ago

LGTM!