1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-16 03:44:56 +02:00

CMakeLists.txt: adding DOWNLOAD_CACHE_DIR variable.

This commit is contained in:
Henrik Hautakoski 2020-04-10 16:57:58 +02:00
parent 4cc6f39da3
commit bbd2959a0d
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
build/
.vscode/
.cache/

View file

@ -36,6 +36,10 @@ if (WIN32)
set( CMAKE_INSTALL_MANDIR "." )
endif (WIN32)
# Path to a directory outside of CMAKE_BUILD_DIR
# Should be used to cache large downloaded data that won't be deleted on clean builds.
set( DOWNLOAD_CACHE_DIR ${CMAKE_CURRENT_LIST_DIR}/.cache )
# --------------------------------
# Compiler settings
# --------------------------------