diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-18 11:44:08 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-18 11:44:08 +0200 |
commit | 4a03a8a1da1341fcceeb8a73a24ea1b4cedb443c (patch) | |
tree | ae9b02dcb8c241b719e0f8ea7c4ef3fe991b9f3a /contrib | |
parent | Merge pull request #1093 (diff) | |
parent | cmake: support BUILD_SHARED_LIBS built-in option (diff) | |
download | monero-4a03a8a1da1341fcceeb8a73a24ea1b4cedb443c.tar.xz |
Merge pull request #1094
06bb692 cmake: support BUILD_SHARED_LIBS built-in option (redfish)
e1c7af3 cmake: transitive deps and remove deprecated LINK_* (redfish)
54010b9 crypto: armv7: slow-hash: remove redundant source include (redfish)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/otshell_utils/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/otshell_utils/CMakeLists.txt b/contrib/otshell_utils/CMakeLists.txt index 7413e0dc5..464b125e4 100644 --- a/contrib/otshell_utils/CMakeLists.txt +++ b/contrib/otshell_utils/CMakeLists.txt @@ -9,6 +9,6 @@ file(GLOB otshell_utils_sources # All files in directory: "*.cpp" ) -add_library (otshell_utils STATIC ${otshell_utils_sources}) +add_library (otshell_utils ${otshell_utils_sources}) set_target_properties (otshell_utils PROPERTIES OUTPUT_NAME "otshell_utils") #target_link_libraries (upnpc-static ${LDLIBS}) # to add used libs |