summaryrefslogtreecommitdiffstats
path: root/src/crypto/ecdsa/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/ecdsa/CMakeLists.txt')
-rw-r--r--src/crypto/ecdsa/CMakeLists.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/crypto/ecdsa/CMakeLists.txt b/src/crypto/ecdsa/CMakeLists.txt
new file mode 100644
index 0000000..4bddd27
--- /dev/null
+++ b/src/crypto/ecdsa/CMakeLists.txt
@@ -0,0 +1,20 @@
+include_directories(. .. ../../include)
+
+add_library(
+ ecdsa
+
+ OBJECT
+
+ ecdsa.c
+ ecdsa_asn1.c
+ ecdsa_error.c
+)
+
+
+add_executable(
+ ecdsa_test
+
+ ecdsa_test.c
+)
+
+target_link_libraries(ecdsa_test crypto)