diff --git a/CMakeLists.txt b/CMakeLists.txt index f882a4c..2c574ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,17 +2,17 @@ cmake_minimum_required(VERSION 3.24) project( collections LANGUAGES Fortran - VERSION 1.0.9 + VERSION 1.0.10 ) set(CMAKE_Fortran_STANDARD 2018) set(CMAKE_Fortran_STANDARD_REQUIRED TRUE) -# Source -add_subdirectory(src) - # Configure everything add_subdirectory(configure) +# Source +add_subdirectory(src) + # Installation Instructions install( EXPORT ${PROJECT_NAME}-targets @@ -34,4 +34,4 @@ option(BUILD_COLLECTIONS_EXAMPLES "Build collections examples") message(STATUS "Build COLLECTIONS examples: ${BUILD_COLLECTIONS_EXAMPLES}") if (${BUILD_COLLECTIONS_EXAMPLES}) add_subdirectory(examples) -endif() \ No newline at end of file +endif()