diff --git a/CMakeLists.txt b/CMakeLists.txt index 7375465..c009a5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,8 @@ set(SOFTWARE_VERSION project(IcarusDownloadManager VERSION ${SOFTWARE_VERSION} DESCRIPTION ${SOFTWARE_DESCRIPTION} LANGUAGES CXX) - message(STATUS "Checking compiler flags for C++20 support.") + # Set C++20 support flags for various compilers include(CheckCXXCompilerFlag) @@ -91,16 +91,7 @@ set(SOURCES set(IDM_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include") -# conan -# set(CONAN_BUILDINFO -# ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) - -# message("conan build info ${CONAN_BUILDINFO}") -# include(${CONAN_BUILDINFO}) -# conan_basic_setup() - include_directories(${IDM_INCLUDE_DIR}) -# include_directories(${CPR_INCLUDE_DIRS} ${IDM_INCLUDE_DIR}) set(USE_SYSTEM_CURL OFF) set(BUILD_CPR_TESTS OFF) @@ -113,4 +104,3 @@ find_package(cpr CONFIG REQUIRED) add_executable(icd ${SOURCES}) target_link_libraries(icd PRIVATE nlohmann_json::nlohmann_json OpenSSL::SSL OpenSSL::Crypto CURL::libcurl cpr::cpr) -# target_link_libraries(icd PUBLIC ${CONAN_LIBS}) diff --git a/README.md b/README.md index b686713..5d0a2a4 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ IcarusDownloadManager is a Linux CLI software client application that has the fe ### Getting Started +Clone the repo + +``` +git clone --recursive https://github.com/kdeng00/IcarusDownloadManager +``` + Install packages ``` @@ -26,12 +32,11 @@ vcpkg install curl vcpkg install cpr ``` + Build the project: ``` -git clone --recursive https://github.com/kdeng00/IcarusDownloadManager - - +cd IcarusDownloadManager mkdir build cd build