diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e5f8596..1267b6a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,55 +35,6 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") endif() endif() -# Ensure the static/ directory exists -set(STATIC_DIR "${PROJECT_SOURCE_DIR}/static") - -# Check if the directory exists and print a message if it does -if(EXISTS "${STATIC_DIR}") - message(STATUS "YEAH, STATIC EXISTS at ${STATIC_DIR}") -else() - message(STATUS "STATIC directory DOES NOT EXIST :((( at ${STATIC_DIR}") -endif() - - - -# Check if the IOHexperimenter directory exists and list its contents -if(EXISTS "${PROJECT_SOURCE_DIR}") - file(GLOB IOHEXPERIMENTER_CONTENTS "${PROJECT_SOURCE_DIR}/*") - message(STATUS "Listing contents of IOHexperimenter:") - foreach(FILE ${IOHEXPERIMENTER_CONTENTS}) - message(STATUS " ${FILE}") - endforeach() -else() - message(STATUS "IOHexperimenter directory DOES NOT EXIST at ${PROJECT_SOURCE_DIR}") -endif() - - - -# Check if the IOHexperimenter directory exists and list its contents -if(EXISTS "${PROJECT_SOURCE_DIR}/IOHexperimenter") - file(GLOB IOHEXPERIMENTER_CONTENTS "${PROJECT_SOURCE_DIR}/IOHexperimenter/*") - message(STATUS "Listing contents of IOHexperimenter:") - foreach(FILE ${IOHEXPERIMENTER_CONTENTS}) - message(STATUS " ${FILE}") - endforeach() -else() - message(STATUS "IOHexperimenter directory DOES NOT EXIST at ${PROJECT_SOURCE_DIR}/IOHexperimenter") -endif() - - - - - - - - - - - - - - # Define project targets.