Skip to content

Please do not set CMAKE_MODULE_PATH. #874

@qis

Description

@qis

https://github.com/boostorg/compute/blob/36350b7/CMakeLists.txt#L64 sets CMAKE_MODULE_PATH and overwrites CMake and possibly toolchain and Compiler/Platform settings.

This prevents users from providing find_package scripts or configs that use include(... relative to the default or toolchain CMAKE_MODULE_PATH.

Please replace it with

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

like the hof library does, or

list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_BINARY_DIR}/cmake)

like the gil does.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions