You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
429 B
14 lines
429 B
10 years ago
|
if(APPLE)
|
||
|
|
||
|
elseif(WIN32)
|
||
|
ExternalProject_Add(argtable2
|
||
10 years ago
|
GIT_REPOSITORY https://github.com/debris/argtable.git
|
||
|
GIT_TAG master
|
||
10 years ago
|
BINARY_DIR argtable2-prefix/src/argtable2
|
||
|
CONFIGURE_COMMAND cmake .
|
||
|
BUILD_COMMAND devenv argtable2.sln /build release
|
||
|
INSTALL_COMMAND cmd /c cp src/Release/argtable2.lib ${ETH_DEPENDENCY_INSTALL_DIR}/lib && cp src/argtable2.h ${ETH_DEPENDENCY_INSTALL_DIR}/include
|
||
|
)
|
||
|
else()
|
||
|
endif()
|