aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2014-10-21 11:24:14 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2014-10-23 16:42:34 -0400
commit55ca7d3b34762d9184090d659189959261bcb9a1 (patch)
treebb43a29d200f1414e46d6a8e07c8cf12069b6067 /src/cryptonote_core
parentcmake: refactor common code with executables (diff)
downloadmonero-55ca7d3b34762d9184090d659189959261bcb9a1.tar.xz
cmake: refactor common code with libraries
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/CMakeLists.txt10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/cryptonote_core/CMakeLists.txt b/src/cryptonote_core/CMakeLists.txt
index dcca6e543..fd84a75ca 100644
--- a/src/cryptonote_core/CMakeLists.txt
+++ b/src/cryptonote_core/CMakeLists.txt
@@ -58,12 +58,7 @@ set(cryptonote_core_headers
tx_pool.h
verification_context.h)
-source_group(cryptonote_core
- FILES
- ${cryptonote_core_sources}
- ${cryptonote_core_headers})
-
-add_library(cryptonote_core
+bitmonero_add_library(cryptonote_core
${cryptonote_core_sources}
${cryptonote_core_headers})
target_link_libraries(cryptonote_core
@@ -78,6 +73,3 @@ target_link_libraries(cryptonote_core
${Boost_SYSTEM_LIBRARY}
${Boost_THREAD_LIBRARY}
${EXTRA_LIBRARIES})
-set_property(TARGET cryptonote_core
- PROPERTY
- FOLDER "libs")