aimotive-legacy / cmakex

lightweight package manager for CMake
4 stars 1 forks source link

support package registries #8

Closed tamaskenez closed 8 years ago

tamaskenez commented 8 years ago

They should contain

def_pkg()

commands which does not add but define package parameters. They should be able to include from deps.cmake with an enhanced include command

include_any(<local-file> | <url>)

This include command should work fine if a remote file uses a relative path:

our deps.cmake

include(https://.../a.cmake)

a.cmake:

include(b.cmake)

the latter command should work correctly when deps.cmake includes a.cmake from a remote

tamaskenez commented 8 years ago

done