Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 1 | # CMakeLists.txt -- Build system for the pybind11 examples |
| 2 | # |
| 3 | # Copyright (c) 2015 Wenzel Jakob <wenzel@inf.ethz.ch> |
| 4 | # |
| 5 | # All rights reserved. Use of this source code is governed by a |
| 6 | # BSD-style license that can be found in the LICENSE file. |
| 7 | |
| 8 | cmake_minimum_required(VERSION 2.8) |
| 9 | |
Wenzel Jakob | 8f4eb00 | 2015-10-15 18:13:33 +0200 | [diff] [blame] | 10 | project(pybind11) |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 11 | |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 12 | # Add a CMake parameter for choosing a desired Python version |
| 13 | set(PYBIND_PYTHON_VERSION "" CACHE STRING "Python version to use for compiling the example application") |
| 14 | |
| 15 | # Set a default build configuration if none is specified. 'MinSizeRel' produces the smallest binaries |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 16 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
| 17 | message(STATUS "Setting build type to 'MinSizeRel' as none was specified.") |
| 18 | set(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING "Choose the type of build." FORCE) |
| 19 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" |
| 20 | "MinSizeRel" "RelWithDebInfo") |
| 21 | endif() |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 22 | string(TOUPPER "${CMAKE_BUILD_TYPE}" U_CMAKE_BUILD_TYPE) |
Wenzel Jakob | 3b806d4 | 2015-10-11 16:29:35 +0200 | [diff] [blame] | 23 | |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 24 | set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6) |
Wenzel Jakob | 3b806d4 | 2015-10-11 16:29:35 +0200 | [diff] [blame] | 25 | find_package(PythonLibs ${PYBIND_PYTHON_VERSION} REQUIRED) |
| 26 | find_package(PythonInterp ${PYBIND_PYTHON_VERSION} REQUIRED) |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 27 | |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 28 | if (UNIX) |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 29 | # Enable C++11 mode |
Wenzel Jakob | 281aa0e | 2015-07-30 15:29:00 +0200 | [diff] [blame] | 30 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 31 | |
| 32 | # Enable link time optimization and set the default symbol |
| 33 | # visibility to hidden (very important to obtain small binaries) |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 34 | if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG) |
Wenzel Jakob | a576e6a | 2015-07-29 17:51:54 +0200 | [diff] [blame] | 35 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -flto") |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 36 | endif() |
| 37 | endif() |
| 38 | |
| 39 | # Compile with compiler warnings turned on |
| 40 | if(MSVC) |
| 41 | if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]") |
| 42 | string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 43 | else() |
| 44 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") |
| 45 | endif() |
| 46 | else() |
| 47 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra") |
| 48 | endif() |
| 49 | |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 50 | # Include path for Python header files |
| 51 | include_directories(${PYTHON_INCLUDE_DIR}) |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 52 | |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 53 | # Include path for pybind11 header files |
| 54 | include_directories(include) |
| 55 | |
| 56 | # Create the binding library |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 57 | add_library(example SHARED |
Wenzel Jakob | 8f4eb00 | 2015-10-15 18:13:33 +0200 | [diff] [blame] | 58 | include/pybind11/cast.h |
| 59 | include/pybind11/common.h |
| 60 | include/pybind11/operators.h |
| 61 | include/pybind11/pybind11.h |
| 62 | include/pybind11/pytypes.h |
| 63 | include/pybind11/typeid.h |
| 64 | include/pybind11/numpy.h |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 65 | example/example.cpp |
| 66 | example/example1.cpp |
| 67 | example/example2.cpp |
| 68 | example/example3.cpp |
| 69 | example/example4.cpp |
| 70 | example/example5.cpp |
| 71 | example/example6.cpp |
| 72 | example/example7.cpp |
| 73 | example/example8.cpp |
| 74 | example/example9.cpp |
Wenzel Jakob | d4258ba | 2015-07-26 16:33:49 +0200 | [diff] [blame] | 75 | example/example10.cpp |
Wenzel Jakob | a576e6a | 2015-07-29 17:51:54 +0200 | [diff] [blame] | 76 | example/example11.cpp |
Wenzel Jakob | a2f6fde | 2015-10-01 16:46:03 +0200 | [diff] [blame] | 77 | example/example12.cpp |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 78 | ) |
| 79 | |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 80 | # Don't add a 'lib' prefix to the shared library |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 81 | set_target_properties(example PROPERTIES PREFIX "") |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 82 | |
Wenzel Jakob | 607654f | 2015-10-13 23:58:10 +0200 | [diff] [blame] | 83 | # Always write the output file directly into the 'example' directory (even on MSVC) |
| 84 | set(CompilerFlags |
| 85 | LIBRARY_OUTPUT_DIRECTORY LIBRARY_OUTPUT_DIRECTORY_RELEASE LIBRARY_OUTPUT_DIRECTORY_DEBUG |
| 86 | LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO |
| 87 | RUNTIME_OUTPUT_DIRECTORY RUNTIME_OUTPUT_DIRECTORY_RELEASE RUNTIME_OUTPUT_DIRECTORY_DEBUG |
| 88 | RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO) |
| 89 | |
| 90 | foreach(CompilerFlag ${CompilerFlags}) |
| 91 | set_target_properties(example PROPERTIES ${CompilerFlag} ${PROJECT_SOURCE_DIR}/example) |
| 92 | endforeach() |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 93 | |
| 94 | if (WIN32) |
| 95 | if (MSVC) |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 96 | # Enforce size-based optimization and link time code generation |
| 97 | # on MSVC (~30% smaller binaries in experiments). /bigobj is needed |
| 98 | # for bigger binding projects due to the limit to 64k addressable sections |
| 99 | # /MP enables multithreaded builds (relevant when there are many files). |
Wenzel Jakob | 02f770d | 2015-09-01 21:38:20 +0200 | [diff] [blame] | 100 | set_target_properties(example PROPERTIES COMPILE_FLAGS "/Os /GL /MP /bigobj") |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 101 | set_target_properties(example PROPERTIES LINK_FLAGS "/LTCG") |
| 102 | endif() |
| 103 | |
| 104 | # .PYD file extension on Windows |
| 105 | set_target_properties(example PROPERTIES SUFFIX ".pyd") |
| 106 | |
| 107 | # Link against the Python shared library |
| 108 | target_link_libraries(example ${PYTHON_LIBRARY}) |
| 109 | elseif (UNIX) |
| 110 | # It's quite common to have multiple copies of the same Python version |
| 111 | # installed on one's system. E.g.: one copy from the OS and another copy |
| 112 | # that's statically linked into an application like Blender or Maya. |
| 113 | # If we link our plugin library against the OS Python here and import it |
| 114 | # into Blender or Maya later on, this will cause segfaults when multiple |
| 115 | # conflicting Python instances are active at the same time. |
| 116 | |
Wenzel Jakob | bcd3182 | 2015-10-12 23:57:20 +0200 | [diff] [blame] | 117 | # Windows is not affected by this issue since it handles DLL imports |
| 118 | # differently. The solution for Linux and Mac OS is simple: we just don't |
| 119 | # link against the Python library. The resulting shared library will have |
| 120 | # missing symbols, but that's perfectly fine -- they will be resolved at |
| 121 | # import time. |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 122 | |
| 123 | # .SO file extension on Linux/Mac OS |
| 124 | set_target_properties(example PROPERTIES SUFFIX ".so") |
| 125 | |
| 126 | # Strip unnecessary sections of the binary on Linux/Mac OS |
| 127 | if(APPLE) |
| 128 | set_target_properties(example PROPERTIES MACOSX_RPATH ".") |
| 129 | set_target_properties(example PROPERTIES LINK_FLAGS "-undefined dynamic_lookup -dead_strip") |
| 130 | if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG) |
| 131 | add_custom_command(TARGET example POST_BUILD COMMAND strip -u -r ${PROJECT_SOURCE_DIR}/example/example.so) |
| 132 | endif() |
| 133 | else() |
| 134 | if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG) |
| 135 | add_custom_command(TARGET example POST_BUILD COMMAND strip ${PROJECT_SOURCE_DIR}/example/example.so) |
| 136 | endif() |
| 137 | endif() |
| 138 | endif() |
| 139 | |
| 140 | enable_testing() |
| 141 | set(RUN_TEST ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/example/run_test.py) |
Wenzel Jakob | 6d6fd09 | 2015-10-01 17:34:26 +0200 | [diff] [blame] | 142 | foreach(i RANGE 1 12) |
Wenzel Jakob | 38bd711 | 2015-07-05 20:05:44 +0200 | [diff] [blame] | 143 | add_test(NAME example${i} COMMAND ${RUN_TEST} example${i}) |
| 144 | endforeach() |