16 lines
270 B
CMake
16 lines
270 B
CMake
PROJECT(MCLaplace)
|
|
cmake_minimum_required(VERSION 3.1)
|
|
|
|
set (CMAKE_CXX_STANDARD 11)
|
|
|
|
set(EXAMPLES
|
|
MCLaplace
|
|
)
|
|
|
|
foreach(EXAMPLE ${EXAMPLES})
|
|
add_executable(${EXAMPLE} ${EXAMPLE}.cpp)
|
|
if(UNIX)
|
|
target_link_libraries(${EXAMPLE} -lm)
|
|
endif()
|
|
endforeach()
|