From: Matthias Maier Date: Wed, 26 Sep 2012 16:37:34 +0000 (+0000) Subject: An example CMakeLists.txt file for a user project X-Git-Tag: v8.0.0~1079^2~630 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=063859d3bd4b7b048e5d835becf4c4b1c7fda9c9;p=dealii.git An example CMakeLists.txt file for a user project git-svn-id: https://svn.dealii.org/branches/branch_cmake@26756 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-1/CMakeLists.txt b/deal.II/examples/step-1/CMakeLists.txt new file mode 100644 index 0000000000..c7bb1395aa --- /dev/null +++ b/deal.II/examples/step-1/CMakeLists.txt @@ -0,0 +1,15 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8) + +FIND_PACKAGE(deal.II CONFIG REQUIRED + HINTS + "../../" + ) + +DEAL_II_INITIALIZE_CACHED_VARIABLES() + +PROJECT(step-1) + +ADD_EXECUTABLE(step-1 step-1.cc) + +DEAL_II_SETUP_TARGET(step-1) +