From: maier Date: Wed, 26 Sep 2012 16:37:34 +0000 (+0000) Subject: An example CMakeLists.txt file for a user project X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b65f7a0647ca71298210405c76c086c53ab9221c;p=dealii-svn.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) +