From bb3ab78c9c0005ec34646b57ee4b9214c0922c1e Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Tue, 16 May 2017 09:53:06 +0200 Subject: [PATCH] fixed: if using internal tinyxml, make sure to install header --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 57cbebac..858b99e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -172,6 +172,9 @@ else() src/LinAlg/*.h src/SIM/*.h src/Utility/*.h ${CMAKE_BINARY_DIR}/IFEM.h) + if(NOT IFEM_USE_SYSTEM_TINYXML) + list(APPEND IFEM_HEADERS 3rdparty/tinyxml/tinyxml.h) + endif() install(FILES ${IFEM_HEADERS} DESTINATION include/IFEM COMPONENT ${IFEM_DEV_COMPONENT})