mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 23:01:43 +00:00
32 lines
858 B
CMake
32 lines
858 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
cmake_policy(SET CMP0003 OLD)
|
|
cmake_policy(SET CMP0011 NEW)
|
|
cmake_policy(SET CMP0015 NEW)
|
|
|
|
# set project name
|
|
set (PROJECT ${MM_PREFIX}radf)
|
|
# set additional cmake file
|
|
include (${PROJECT}.cmake)
|
|
|
|
|
|
# additional options
|
|
OPTION (WITH_DEBUG_MODE "Build with debug mode" OFF)
|
|
OPTION (ADD_INCLUDE "Add include files" OFF)
|
|
|
|
# set libraries
|
|
set (LIBRARIES)
|
|
foreach (LIBRARY ${LIBRARIES})
|
|
find_library ("${LIBRARY}_FOUND" ${LIBRARY})
|
|
message (STATUS "Check the ${LIBRARY} is installed: " ${${LIBRARY}_FOUND})
|
|
if ("${${LIBRARY}_FOUND}" STREQUAL "${LIBRARY}_FOUND-NOTFOUND")
|
|
message (STATUS "Adding library sources")
|
|
add_subdirectory (../${LIBRARY} lib/${LIBRARY})
|
|
endif ()
|
|
endforeach ()
|
|
|
|
# additional targets
|
|
set (TARGETS "")
|
|
set (HEADERS "")
|
|
|
|
add_subdirectory (${${PROJECT}_SOURCE_DIR}) |