10 lines
208 B
CMake
10 lines
208 B
CMake
project(pistache NONE)
|
|
include(ExternalProject)
|
|
|
|
ExternalProject_Add(pistache
|
|
GIT_REPOSITORY https://github.com/pistacheio/pistache.git
|
|
GIT_TAG master
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|