Page MenuHomePhabricator

D4295.id15537.diff
No OneTemporary

D4295.id15537.diff

diff --git a/native/cpp/CommonCpp/Tools/CMakeLists.txt b/native/cpp/CommonCpp/Tools/CMakeLists.txt
new file mode 100644
--- /dev/null
+++ b/native/cpp/CommonCpp/Tools/CMakeLists.txt
@@ -0,0 +1,57 @@
+project(comm-tools)
+cmake_minimum_required(VERSION 3.4)
+
+include(GNUInstallDirs)
+
+find_package(Folly REQUIRED)
+
+set(TOOLS_HDRS
+ "CommSecureStore.h"
+ "Logger.h"
+ "PlatformSpecificTools.h"
+ "WorkerThread.h"
+)
+
+set(TOOLS_SRCS
+ "WorkerThread.cpp"
+)
+
+add_library(comm-tools
+ ${TOOLS_HDRS}
+ ${TOOLS_SRCS}
+)
+
+target_link_libraries(comm-tools
+ Folly::folly
+)
+
+# reference local directory when building, use installation path when installing
+target_include_directories(comm-tools
+ PUBLIC
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../CryptoTools>
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../Tools>
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
+ $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
+)
+
+install(TARGETS comm-tools EXPORT comm-tools-export
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT comm-tools
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT comm-tools
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT comm-tools
+)
+
+install(FILES ${TOOLS_HDRS} DESTINATION include/Tools)
+
+# For development purposes, can point cmake to this directory if doing development
+export(TARGETS comm-tools
+ NAMESPACE comm-tools::
+ FILE ${CMAKE_CURRENT_BINARY_DIR}/cmake/comm-tools/comm-tools-targets.cmake
+)
+
+# For installation
+install(EXPORT comm-tools-export
+ FILE comm-tools-targets.cmake
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/comm-tool
+ NAMESPACE comm-tools::
+)

File Metadata

Mime Type
text/plain
Expires
Sun, Sep 29, 8:00 AM (21 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2199521
Default Alt Text
D4295.id15537.diff (1 KB)

Event Timeline