Mario Hüttel
374e3b54c0
* Add target parameters to compile all symbols invisible to the outside by default. * Edit FUNC_DECL() macro to set attribute that exports the function
15 lines
556 B
CMake
15 lines
556 B
CMake
project(pluginexample)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_search_module(PYTHON REQUIRED python3)
|
|
|
|
aux_source_directory(src SOURCES)
|
|
|
|
include_directories(${PYTHON_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
link_libraries(${PYTHON_LDFLAGS} version)
|
|
|
|
add_library(${PROJECT_NAME} SHARED EXCLUDE_FROM_ALL ${SOURCES})
|
|
add_dependencies(${PROJECT_NAME} version)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES C_VISIBILITY_PRESET hidden)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_VISIBILITY_PRESET hidden)
|