GithubHelp home page GithubHelp logo

DOWNLOAD_ONLY not parsed? about cpm.cmake HOT 4 CLOSED

cpm-cmake avatar cpm-cmake commented on August 18, 2024
DOWNLOAD_ONLY not parsed?

from cpm.cmake.

Comments (4)

JohelEGP avatar JohelEGP commented on August 18, 2024 1

It does solve it.

from cpm.cmake.

JohelEGP avatar JohelEGP commented on August 18, 2024

Here's JEGPFindDependencies.cmake: https://github.com/johelegp/jegp/blob/dd9e15ee4d5ec3e233d252fca091ee638777a8ce/cmake/JEGPFindDependencies.cmake.
And NEWLIBFindDependencies.cmake:

if(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/CPM.cmake)
    message(STATUS "Downloading CPM.cmake")
    file(DOWNLOAD
         https://github.com/TheLartians/CPM.cmake/raw/master/cmake/CPM.cmake
         ${CMAKE_CURRENT_LIST_DIR}/CPM.cmake)
endif()

include(CPM)

find_package(SFML 2.5 REQUIRED COMPONENTS graphics)
CPMFindPackage(
    NAME jegp_cmake_modules
    GITHUB_REPOSITORY johelegp/jegp.cmake_modules
    GIT_TAG master
    GIT_SHALLOW True)
CPMFindPackage(
    NAME jegp
    GIT_REPOSITORY /mnt/sda5/documents/c++/repositories/jegp/jegp
    GIT_TAG master
    GIT_SHALLOW True)
CPMFindPackage(
    NAME range-v3
    GITHUB_REPOSITORY ericniebler/range-v3
    GIT_TAG master
    GIT_SHALLOW True
    DOWNLOAD_ONLY True)
if(range-v3_ADDED)
    add_library(range-v3::range-v3 INTERFACE IMPORTED GLOBAL)
    target_include_directories(range-v3::range-v3
                               INTERFACE ${range-v3_SOURCE_DIR}/include)
endif()
CPMFindPackage(
    NAME fmt
    GITHUB_REPOSITORY fmtlib/fmt
    GIT_TAG master
    GIT_SHALLOW True)
CPMFindPackage(
    NAME mp-units
    GITHUB_REPOSITORY mpusz/units
    GIT_TAG master
    GIT_SHALLOW True
    DOWNLOAD_ONLY True)

list(APPEND CMAKE_MODULE_PATH ${jegp_cmake_modules_SOURCE_DIR})

if(mp-units_ADDED)
    add_subdirectory(${mp-units_SOURCE_DIR}/src ${mp-units_BINARY_DIR})
endif()

The dependency story of jegp_cmake_modules is the same as that of range-v3, but the former works. The only difference is that range-v3 is declared as DOWNLOAD_ONLY True.

from cpm.cmake.

TheLartians avatar TheLartians commented on August 18, 2024

Hey thanks for the report! I think the problem was that we were incorrectly trying to download the package when we should have only been checking its availability. I've corrected that in #120. Could you test if the patched version solves the issue for you?

from cpm.cmake.

TheLartians avatar TheLartians commented on August 18, 2024

Great, thanks for verifying it! The fix is now published in version 0.24.

from cpm.cmake.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.