[cig-commits] commit 1977 by buerg to /var/svn/dealii/aspect

dealii.demon at gmail.com dealii.demon at gmail.com
Fri Oct 18 09:40:07 PDT 2013


Revision 1977

Fix bug.

U   trunk/aspire/CMakeLists.txt


http://www.dealii.org/websvn/revision.php?repname=Aspect+Repository&path=%2F&rev=1977&peg=1977

Diff:
Modified: trunk/aspire/CMakeLists.txt
===================================================================
--- trunk/aspire/CMakeLists.txt	2013-10-18 16:23:22 UTC (rev 1976)
+++ trunk/aspire/CMakeLists.txt	2013-10-18 16:39:47 UTC (rev 1977)
@@ -40,14 +40,6 @@
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 
-find_package(cantera)
-
-if (CANTERA_FOUND)
-include_directories(${CANTERA_INCLUDE_DIRS})
-TARGET_LINK_LIBRARIES(${TARGET} ${CANTERA_LIBRARIES})
-endif (CANTERA_FOUND)
-
-
 IF(EXISTS ${CMAKE_SOURCE_DIR}/tests/CMakeLists.txt)
   ENABLE_TESTING()
   ADD_SUBDIRECTORY(tests)
@@ -57,3 +49,10 @@
 MESSAGE("====================================================")
 
 DEAL_II_INVOKE_AUTOPILOT()
+
+find_package(cantera)
+
+if (CANTERA_FOUND)
+include_directories(${CANTERA_INCLUDE_DIRS})
+TARGET_LINK_LIBRARIES(${TARGET} ${CANTERA_LIBRARIES})
+endif (CANTERA_FOUND)


More information about the CIG-COMMITS mailing list