blob: c77ab8f7cfa2e2efee862f4930b9dd6cc81a2b33 [file] [log] [blame]
Wenzel Jakob38bd7112015-07-05 20:05:44 +02001# 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
8cmake_minimum_required(VERSION 2.8)
9
Wenzel Jakob8f4eb002015-10-15 18:13:33 +020010project(pybind11)
Wenzel Jakob38bd7112015-07-05 20:05:44 +020011
Wenzel Jakob3350b5e2015-11-24 21:33:18 +010012option(PYBIND11_INSTALL "Install pybind11 header files?" ON)
13
Wenzel Jakobbcd31822015-10-12 23:57:20 +020014# Add a CMake parameter for choosing a desired Python version
Wenzel Jakobb1b71402015-10-18 16:48:30 +020015set(PYBIND11_PYTHON_VERSION "" CACHE STRING "Python version to use for compiling the example application")
Wenzel Jakobbcd31822015-10-12 23:57:20 +020016
17# Set a default build configuration if none is specified. 'MinSizeRel' produces the smallest binaries
Wenzel Jakob38bd7112015-07-05 20:05:44 +020018if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
19 message(STATUS "Setting build type to 'MinSizeRel' as none was specified.")
20 set(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING "Choose the type of build." FORCE)
21 set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
22 "MinSizeRel" "RelWithDebInfo")
23endif()
Wenzel Jakobbcd31822015-10-12 23:57:20 +020024string(TOUPPER "${CMAKE_BUILD_TYPE}" U_CMAKE_BUILD_TYPE)
Wenzel Jakob3b806d42015-10-11 16:29:35 +020025
Wenzel Jakob38bd7112015-07-05 20:05:44 +020026set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6)
Wenzel Jakobb1b71402015-10-18 16:48:30 +020027find_package(PythonLibs ${PYBIND11_PYTHON_VERSION} REQUIRED)
28find_package(PythonInterp ${PYBIND11_PYTHON_VERSION} REQUIRED)
Wenzel Jakob38bd7112015-07-05 20:05:44 +020029
Wenzel Jakobfaaee1c2015-11-30 10:17:01 +010030include(CheckCXXCompilerFlag)
31
32if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
Wenzel Jakobf2331662015-11-28 14:24:44 +010033 # Enable C++11 mode on C++ / Clang
Wenzel Jakob281aa0e2015-07-30 15:29:00 +020034 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
Wenzel Jakobbcd31822015-10-12 23:57:20 +020035
36 # Enable link time optimization and set the default symbol
37 # visibility to hidden (very important to obtain small binaries)
Wenzel Jakob38bd7112015-07-05 20:05:44 +020038 if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)
Wenzel Jakobfaaee1c2015-11-30 10:17:01 +010039 # Default symbol visibility
40 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden")
41
42 # Check for Link Time Optimization support
43 CHECK_CXX_COMPILER_FLAG("-flto" HAS_LTO_FLAG)
44 if (HAS_LTO_FLAG)
45 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto")
46 endif()
Wenzel Jakob38bd7112015-07-05 20:05:44 +020047 endif()
48endif()
49
50# Compile with compiler warnings turned on
51if(MSVC)
52 if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
53 string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
54 else()
55 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
56 endif()
Wenzel Jakobf2331662015-11-28 14:24:44 +010057elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
Wenzel Jakob38bd7112015-07-05 20:05:44 +020058 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
59endif()
60
Wenzel Jakobbcd31822015-10-12 23:57:20 +020061# Include path for Python header files
62include_directories(${PYTHON_INCLUDE_DIR})
Wenzel Jakob38bd7112015-07-05 20:05:44 +020063
Wenzel Jakobbcd31822015-10-12 23:57:20 +020064# Include path for pybind11 header files
65include_directories(include)
66
Luka Čehovin19af3572015-11-24 21:20:56 +010067set(PYBIND11_HEADERS
Wenzel Jakob8f4eb002015-10-15 18:13:33 +020068 include/pybind11/cast.h
69 include/pybind11/common.h
70 include/pybind11/operators.h
71 include/pybind11/pybind11.h
72 include/pybind11/pytypes.h
73 include/pybind11/typeid.h
74 include/pybind11/numpy.h
Luka Čehovin19af3572015-11-24 21:20:56 +010075)
76
77# Create the binding library
78add_library(example SHARED
79 ${PYBIND11_HEADERS}
Wenzel Jakob38bd7112015-07-05 20:05:44 +020080 example/example.cpp
81 example/example1.cpp
82 example/example2.cpp
83 example/example3.cpp
84 example/example4.cpp
85 example/example5.cpp
86 example/example6.cpp
87 example/example7.cpp
88 example/example8.cpp
89 example/example9.cpp
Wenzel Jakobd4258ba2015-07-26 16:33:49 +020090 example/example10.cpp
Wenzel Jakoba576e6a2015-07-29 17:51:54 +020091 example/example11.cpp
Wenzel Jakoba2f6fde2015-10-01 16:46:03 +020092 example/example12.cpp
Wenzel Jakob38bd7112015-07-05 20:05:44 +020093)
94
Wenzel Jakobbcd31822015-10-12 23:57:20 +020095# Don't add a 'lib' prefix to the shared library
Wenzel Jakob38bd7112015-07-05 20:05:44 +020096set_target_properties(example PROPERTIES PREFIX "")
Wenzel Jakobbcd31822015-10-12 23:57:20 +020097
Wenzel Jakob607654f2015-10-13 23:58:10 +020098# Always write the output file directly into the 'example' directory (even on MSVC)
99set(CompilerFlags
100 LIBRARY_OUTPUT_DIRECTORY LIBRARY_OUTPUT_DIRECTORY_RELEASE LIBRARY_OUTPUT_DIRECTORY_DEBUG
101 LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO
102 RUNTIME_OUTPUT_DIRECTORY RUNTIME_OUTPUT_DIRECTORY_RELEASE RUNTIME_OUTPUT_DIRECTORY_DEBUG
103 RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO)
104
105foreach(CompilerFlag ${CompilerFlags})
106 set_target_properties(example PROPERTIES ${CompilerFlag} ${PROJECT_SOURCE_DIR}/example)
107endforeach()
Wenzel Jakob38bd7112015-07-05 20:05:44 +0200108
109if (WIN32)
110 if (MSVC)
Wenzel Jakobbcd31822015-10-12 23:57:20 +0200111 # Enforce size-based optimization and link time code generation
112 # on MSVC (~30% smaller binaries in experiments). /bigobj is needed
113 # for bigger binding projects due to the limit to 64k addressable sections
114 # /MP enables multithreaded builds (relevant when there are many files).
Wenzel Jakob02f770d2015-09-01 21:38:20 +0200115 set_target_properties(example PROPERTIES COMPILE_FLAGS "/Os /GL /MP /bigobj")
Wenzel Jakob38bd7112015-07-05 20:05:44 +0200116 set_target_properties(example PROPERTIES LINK_FLAGS "/LTCG")
117 endif()
118
119 # .PYD file extension on Windows
120 set_target_properties(example PROPERTIES SUFFIX ".pyd")
121
122 # Link against the Python shared library
123 target_link_libraries(example ${PYTHON_LIBRARY})
124elseif (UNIX)
125 # It's quite common to have multiple copies of the same Python version
126 # installed on one's system. E.g.: one copy from the OS and another copy
127 # that's statically linked into an application like Blender or Maya.
128 # If we link our plugin library against the OS Python here and import it
129 # into Blender or Maya later on, this will cause segfaults when multiple
130 # conflicting Python instances are active at the same time.
131
Wenzel Jakobbcd31822015-10-12 23:57:20 +0200132 # Windows is not affected by this issue since it handles DLL imports
133 # differently. The solution for Linux and Mac OS is simple: we just don't
134 # link against the Python library. The resulting shared library will have
135 # missing symbols, but that's perfectly fine -- they will be resolved at
136 # import time.
Wenzel Jakob38bd7112015-07-05 20:05:44 +0200137
138 # .SO file extension on Linux/Mac OS
139 set_target_properties(example PROPERTIES SUFFIX ".so")
140
Wenzel Jakob867ae372015-10-15 22:41:25 +0200141 # Optimize for a small binary size
142 if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)
143 set_target_properties(example PROPERTIES COMPILE_FLAGS "-Os")
144 endif()
145
Wenzel Jakob38bd7112015-07-05 20:05:44 +0200146 # Strip unnecessary sections of the binary on Linux/Mac OS
147 if(APPLE)
148 set_target_properties(example PROPERTIES MACOSX_RPATH ".")
149 set_target_properties(example PROPERTIES LINK_FLAGS "-undefined dynamic_lookup -dead_strip")
150 if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)
151 add_custom_command(TARGET example POST_BUILD COMMAND strip -u -r ${PROJECT_SOURCE_DIR}/example/example.so)
152 endif()
153 else()
154 if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)
155 add_custom_command(TARGET example POST_BUILD COMMAND strip ${PROJECT_SOURCE_DIR}/example/example.so)
156 endif()
157 endif()
158endif()
159
160enable_testing()
161set(RUN_TEST ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/example/run_test.py)
Wenzel Jakob6d6fd092015-10-01 17:34:26 +0200162foreach(i RANGE 1 12)
Wenzel Jakob38bd7112015-07-05 20:05:44 +0200163 add_test(NAME example${i} COMMAND ${RUN_TEST} example${i})
164endforeach()
Luka Čehovin19af3572015-11-24 21:20:56 +0100165
Wenzel Jakob3350b5e2015-11-24 21:33:18 +0100166if (PYBIND11_INSTALL)
Luka Čehovin19af3572015-11-24 21:20:56 +0100167 install(FILES ${PYBIND11_HEADERS} DESTINATION include/pybind11)
168endif()