FIND_PACKAGE(deal.II 8.5.0 REQUIRED HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} # You can specify additional hints for search paths here, e.g. # $ENV{HOME}/workspace/deal.II ) # Set the name of the project and target: SET(TARGET "step-1") # Declare all source files the target consists of. Here, this is only # the one step-X.cc file, but as you expand your project you may wish # to add other source files as well. If your project becomes much larger, # you may want to either replace the following statement by something like # FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") # FILE(GLOB_RECURSE TARGET_INC "include/*.h") # SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) # or switch altogether to the large project CMakeLists.txt file discussed # in the "CMake in user projects" page accessible from the "User info" # page of the documentation. SET(TARGET_SRC ${TARGET}.cc ) CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) DEAL_II_INITIALIZE_CACHED_VARIABLES() PROJECT(${TARGET} CXX) DEAL_II_INVOKE_AUTOPILOT()