diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 6e64660..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ -# cmake for mxml -# -# template from https://dominikberner.ch/cmake-interface-lib/ -# - -cmake_minimum_required(VERSION 3.12) - -project("mxml" - VERSION 1 - DESCRIPTION "XML encoder and decoder for use with MIDAS" - HOMEPAGE_URL "https://midas.triumf.ca") - -add_library(${PROJECT_NAME} INTERFACE) - -target_include_directories(${PROJECT_NAME} INTERFACE - $ - $) - -#target_include_directories(${PROJECT_NAME} INTERFACE .) - -target_compile_features(${PROJECT_NAME} INTERFACE cxx_std_11) - -# end