All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-restbed-server.FindRestbedAndBoost.cmake Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version

include(FetchContent)

## Restbed
FetchContent_Declare(
        restbed
        GIT_REPOSITORY https://github.com/Corvusoft/restbed
        GIT_TAG        4.7
)

FetchContent_MakeAvailable(restbed)

FetchContent_GetProperties(restbed)
if(NOT restbed_POPULATED)

    FetchContent_Populate(restbed)
    add_subdirectory(${restbed_SOURCE_DIR} ${restbed_BINARY_DIR})
endif()


## Boost
find_package(Boost 1.7.0 COMPONENTS system REQUIRED)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy