aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/rsa/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libcmix-crypto/rsa/CMakeLists.txt')
-rw-r--r--libcmix-crypto/rsa/CMakeLists.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/libcmix-crypto/rsa/CMakeLists.txt b/libcmix-crypto/rsa/CMakeLists.txt
deleted file mode 100644
index 2eb847f..0000000
--- a/libcmix-crypto/rsa/CMakeLists.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-add_library(rsa-interface INTERFACE)
-
-target_include_directories(rsa-interface
- INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
-)
-
-target_sources(rsa-interface
- INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/rsa.h
-)
-
-target_link_libraries(rsa-interface
- INTERFACE cmix-crypto-interface
-)
-
-foreach(impl ${rsa_implementations})
- add_subdirectory(${impl})
-endforeach()
-
-add_library(rsa-implementation
- rsa.h rsa.c
-)
-
-target_include_directories(rsa-implementation
- PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
-)
-
-target_link_libraries(rsa-implementation
- PUBLIC rsa-${rsa_implementation}
-)