Update list-maintainers to output redmine syntax
[hoomd-blue.git] / share / hoomd / plugin_template_pair_ext / CMakeLists.txt
blob46844dab1d9f968595107ff49b09c850ef7fa41c
1 project(pair_ext_template)
2 CMAKE_MINIMUM_REQUIRED(VERSION 2.6.2 FATAL_ERROR)
4 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_MODULE_PATH})
5 find_package(HOOMD)
7 # plugins must be built as shared libraries
8 if (ENABLE_STATIC)
9     message(SEND_ERROR "Plugins cannot be built against a statically compiled hoomd")
10 endif (ENABLE_STATIC)
12 set(BUILD_SHARED_LIBS on)
14 # add subdirectories
15 add_subdirectory(cppmodule)
16 add_subdirectory(pymodule)
17 add_subdirectory(doc)
19 # overide the CMAKE_INSTALL_PREFIX on the first run to the env HOOMD_PLUGINS_DIR if defined or ${HOOMD_ROOT}
20 # ${HOOMD_ROOT} will likely be the most common installation directory, but users may want to override
21 if(DEFINED HOOMD_PLUGINS_DIR)
22     set(_default_install_path ${HOOMD_PLUGINS_DIR})
23 else(DEFINED HOOMD_PLUGINS_DIR)
24     set(_default_install_path ${HOOMD_ROOT}/lib/hoomd/python-module)
25 endif(DEFINED HOOMD_PLUGINS_DIR)
27 if (NOT _first_run)
28     if (HOOMD_FOUND)
29         set(CMAKE_INSTALL_PREFIX ${_default_install_path} CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
30         SET(_first_run ON CACHE INTERNAL "First configure has run: CMAKE_INSTALL_PREFIX has had its defaults changed" FORCE)
31     endif (HOOMD_FOUND)
32 endif (NOT _first_run)
34 # install the __init__.py file 
35 install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/__init__.py DESTINATION hoomd_plugins)