chiark / gitweb /
Merge pull request #137 from jschueller/bounds
[nlopt.git] / CMakeLists.txt
index ddcaa060f4242e835cfc42c784fde95e0a7e456d..2795c0cd4dc997ff0ad78ae5bccd5d5b9e69ab09 100644 (file)
@@ -1,29 +1,29 @@
 #==============================================================================\r
 # NLOPT CMake file\r
-# \r
-# NLopt is a free/open-source library for nonlinear optimization, providing \r
-# a common interface for a number of different free optimization routines \r
-# available online as well as original implementations of various other \r
+#\r
+# NLopt is a free/open-source library for nonlinear optimization, providing\r
+# a common interface for a number of different free optimization routines\r
+# available online as well as original implementations of various other\r
 # algorithms\r
-# WEBSITE: http://ab-initio.mit.edu/wiki/index.php/NLopt \r
+# WEBSITE: http://ab-initio.mit.edu/wiki/index.php/NLopt\r
 # AUTHOR: Steven G. Johnson\r
 #\r
 # This CMakeLists.txt file was created to compile NLOPT with the CMAKE utility.\r
 # Benoit Scherrer, 2010 CRL, Harvard Medical School\r
-# Copyright (c) 2008-2009 Children's Hospital Boston \r
+# Copyright (c) 2008-2009 Children's Hospital Boston\r
 #==============================================================================\r
-cmake_minimum_required (VERSION 2.8.5)\r
+cmake_minimum_required (VERSION 3.0)\r
 \r
 if (NOT DEFINED CMAKE_BUILD_TYPE)\r
-  set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type")\r
+  set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type")\r
 endif ()\r
 \r
-project (nlopt C)\r
+project (nlopt)\r
 \r
 list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)\r
 \r
 option (WITH_CXX "enable cxx routines" OFF)\r
-option (BUILD_SHARED_LIBS "Build NLOPT as a shared library" ON)\r
+option (BUILD_SHARED_LIBS "Build NLopt as a shared library" ON)\r
 option (BUILD_PYTHON "build python bindings" ON)\r
 option (BUILD_OCTAVE "build octave bindings" ON)\r
 option (BUILD_MATLAB "build matlab bindings" ON)\r
@@ -35,10 +35,6 @@ if (WITH_CXX)
   set (NLOPT_SUFFIX _cxx)\r
 endif ()\r
 \r
-if (WITH_CXX OR BUILD_PYTHON OR BUILD_GUILE OR BUILD_OCTAVE)\r
-  enable_language (CXX)\r
-endif ()\r
-\r
 include (GNUInstallDirs)\r
 \r
 # Offer the user the choice of overriding the installation directories\r
@@ -72,6 +68,7 @@ include (CheckTypeSize)
 include (CheckCCompilerFlag)\r
 include (CheckCXXSymbolExists)\r
 include (CheckCXXCompilerFlag)\r
+include (CheckLibraryExists)\r
 \r
 #==============================================================================\r
 # COMPILATION CHECKINGS and CONFIGURATION GENERATION\r
@@ -105,15 +102,20 @@ set (HAVE_UINT32_T ${SIZEOF_UINT32_T})
 check_type_size ("unsigned int" SIZEOF_UNSIGNED_INT)\r
 check_type_size ("unsigned long" SIZEOF_UNSIGNED_LONG)\r
 \r
+check_library_exists ("m" sqrt "" HAVE_LIBM)\r
+if (HAVE_LIBM)\r
+  set (M_LIBRARY m)\r
+endif()\r
+\r
 if (NOT DEFINED HAVE_FPCLASSIFY)\r
   message(STATUS "Looking for fpclassify")\r
-  file (WRITE ${CMAKE_BINARY_DIR}/fpclassify.c "#include <math.h>\n")\r
-  file (APPEND ${CMAKE_BINARY_DIR}/fpclassify.c "int main(void) {\n")\r
-  file (APPEND ${CMAKE_BINARY_DIR}/fpclassify.c "if (!fpclassify(3.14159)) fpclassify(2.7183);\n")\r
-  file (APPEND ${CMAKE_BINARY_DIR}/fpclassify.c "  return 0; }\n")\r
+  file (WRITE ${PROJECT_BINARY_DIR}/fpclassify.c "#include <math.h>\n")\r
+  file (APPEND ${PROJECT_BINARY_DIR}/fpclassify.c "int main(void) {\n")\r
+  file (APPEND ${PROJECT_BINARY_DIR}/fpclassify.c "if (!fpclassify(3.14159)) fpclassify(2.7183);\n")\r
+  file (APPEND ${PROJECT_BINARY_DIR}/fpclassify.c "  return 0; }\n")\r
   try_compile (HAVE_FPCLASSIFY\r
-  ${CMAKE_BINARY_DIR}/build_fpclassify\r
-  ${CMAKE_BINARY_DIR}/fpclassify.c\r
+  ${PROJECT_BINARY_DIR}/build_fpclassify\r
+  ${PROJECT_BINARY_DIR}/fpclassify.c\r
   CMAKE_FLAGS -DLINK_LIBRARIES=m)\r
   message(STATUS "Looking for fpclassify - ${HAVE_FPCLASSIFY}")\r
 endif ()\r
@@ -165,42 +167,17 @@ if (UNIX OR MINGW)
   install (FILES ${CMAKE_CURRENT_BINARY_DIR}/nlopt.pc DESTINATION ${RELATIVE_INSTALL_LIB_DIR}/pkgconfig)\r
 endif ()\r
 \r
-#==============================================================================\r
-# INCLUDE DIRECTORIES\r
-#==============================================================================\r
-set (${INCLUDE_DIRECTORIES} "")\r
-include_directories (\r
-  ${CMAKE_BINARY_DIR}/api\r
-  ${CMAKE_BINARY_DIR}\r
-  stogo\r
-  util\r
-  direct\r
-  cdirect\r
-  praxis\r
-  luksan\r
-  crs\r
-  mlsl\r
-  mma\r
-  cobyla\r
-  newuoa\r
-  neldermead\r
-  auglag\r
-  bobyqa\r
-  isres\r
-  slsqp\r
-  esch\r
-  api)\r
-\r
-\r
 #==============================================================================\r
 # nlopt LIBRARY TARGET (SHARED OR STATIC)\r
 #==============================================================================\r
 \r
-set (NLOPT_HEADERS \r
-  api/nlopt.h ${CMAKE_BINARY_DIR}/api/nlopt.hpp ${CMAKE_BINARY_DIR}/api/nlopt.f\r
+configure_file (api/nlopt.h ${PROJECT_BINARY_DIR}/api/nlopt.h COPYONLY)\r
+\r
+set (NLOPT_HEADERS\r
+  ${PROJECT_BINARY_DIR}/api/nlopt.h ${PROJECT_BINARY_DIR}/api/nlopt.hpp ${PROJECT_BINARY_DIR}/api/nlopt.f\r
 )\r
 \r
-set (NLOPT_SOURCES   \r
+set (NLOPT_SOURCES\r
   direct/DIRect.c direct/direct_wrap.c direct/DIRserial.c direct/DIRsubrout.c direct/direct-internal.h direct/direct.h\r
   cdirect/cdirect.c cdirect/hybrid.c cdirect/cdirect.h\r
   praxis/praxis.c praxis/praxis.h\r
@@ -210,7 +187,7 @@ set (NLOPT_SOURCES
   mma/mma.c mma/mma.h mma/ccsa_quadratic.c\r
   cobyla/cobyla.c cobyla/cobyla.h\r
   newuoa/newuoa.c newuoa/newuoa.h\r
-  neldermead/nldrmd.c neldermead/neldermead.h neldermead/sbplx.c \r
+  neldermead/nldrmd.c neldermead/neldermead.h neldermead/sbplx.c\r
   auglag/auglag.c auglag/auglag.h\r
   bobyqa/bobyqa.c bobyqa/bobyqa.h\r
   isres/isres.c isres/isres.h\r
@@ -224,19 +201,48 @@ if (WITH_CXX)
   list (APPEND NLOPT_SOURCES stogo/global.cc stogo/linalg.cc stogo/local.cc stogo/stogo.cc stogo/tools.cc stogo/global.h stogo/linalg.h stogo/local.h stogo/stogo_config.h stogo/stogo.h stogo/tools.h)\r
 endif ()\r
 \r
-\r
-if (BUILD_SHARED_LIBS)\r
-  add_definitions (-DNLOPT_DLL)\r
-  add_definitions (-DNLOPT_DLL_EXPORT)\r
-endif ()\r
-\r
 install (FILES ${NLOPT_HEADERS} DESTINATION ${INSTALL_INCLUDE_DIR})\r
 \r
 set (nlopt_lib nlopt${NLOPT_SUFFIX})\r
 add_library (${nlopt_lib} ${NLOPT_SOURCES})\r
+target_link_libraries (${nlopt_lib} ${M_LIBRARY})\r
+\r
 set_target_properties (${nlopt_lib} PROPERTIES SOVERSION 0)\r
 set_target_properties (${nlopt_lib} PROPERTIES VERSION 0.9.0)\r
 \r
+#==============================================================================\r
+# INCLUDE DIRECTORIES\r
+#==============================================================================\r
+target_include_directories (${nlopt_lib} PRIVATE\r
+  ${PROJECT_BINARY_DIR}/api\r
+  ${PROJECT_BINARY_DIR}\r
+  stogo\r
+  util\r
+  direct\r
+  cdirect\r
+  praxis\r
+  luksan\r
+  crs\r
+  mlsl\r
+  mma\r
+  cobyla\r
+  newuoa\r
+  neldermead\r
+  auglag\r
+  bobyqa\r
+  isres\r
+  slsqp\r
+  esch\r
+  api)\r
+\r
+get_target_property (NLOPT_PRIVATE_INCLUDE_DIRS ${nlopt_lib} INCLUDE_DIRECTORIES)\r
+target_include_directories (${nlopt_lib} INTERFACE "$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/api>")\r
+\r
+if (BUILD_SHARED_LIBS)\r
+  target_compile_definitions (${nlopt_lib} PUBLIC -DNLOPT_DLL)\r
+  target_compile_definitions (${nlopt_lib} PRIVATE -DNLOPT_DLL_EXPORT)\r
+endif ()\r
+\r
 # pass -fPIC in case swig module is built with static library\r
 if (NOT BUILD_SHARED_LIBS)\r
   check_c_compiler_flag (-fPIC HAS_FPIC)\r