diff options
author | Oran Juice <oranjuices@hotmail.com> | 2014-09-24 22:44:36 +0530 |
---|---|---|
committer | Oran Juice <oranjuices@hotmail.com> | 2014-09-24 22:44:36 +0530 |
commit | 26ea53d4611bbb81cf12be61daa30c489a942bda (patch) | |
tree | 1f875fdd1d57dad1ff911eae937501b240e4bbc4 /src/CMakeLists.txt | |
parent | Duh. Had left word list in commit. (diff) | |
download | monero-26ea53d4611bbb81cf12be61daa30c489a942bda.tar.xz |
Copies word lists directory to the location of the executable
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 572515b5c..283a510b8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -41,7 +41,12 @@ file(GLOB_RECURSE SIMPLEWALLET simplewallet/*) file(GLOB_RECURSE CONN_TOOL connectivity_tool/*) file(GLOB_RECURSE WALLET wallet/*) file(GLOB_RECURSE MINER miner/*) -file(GLOB_RECURSE MNEMONICS mnemonics/*) +file(GLOB MNEMONICS mnemonics/*) + +file(GLOB NEW_WORD_LISTS mnemonics/wordlists/languages/*) +file(GLOB OLD_WORD_LIST mnemonics/wordlists/*) +file(COPY ${NEW_WORD_LISTS} DESTINATION "${CMAKE_SOURCE_DIR}/build/release/src/wordlists/languages") +file(COPY ${OLD_WORD_LIST} DESTINATION "${CMAKE_SOURCE_DIR}/build/release/src/wordlists") source_group(common FILES ${COMMON}) source_group(crypto FILES ${CRYPTO}) |