stub_CMakeLists.txt.in 337 字节
Newer Older
X
Xiaoyu Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12

# stub
ExternalProject_Add(stub
        GIT_REPOSITORY https://github.com/coolxv/cpp-stub.git
        GIT_SUBMODULES "src"
        SOURCE_DIR "${CMAKE_CONTRIB_DIR}/cpp-stub"
        BINARY_DIR "${CMAKE_CONTRIB_DIR}/cpp-stub/src"
        CONFIGURE_COMMAND ""
        BUILD_COMMAND ""
        INSTALL_COMMAND ""
        TEST_COMMAND ""
)