| Index: crypto/CMakeLists.txt
|
| diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..252b910f52c5897ae4c94f6264cdb16045cd1299
|
| --- /dev/null
|
| +++ b/crypto/CMakeLists.txt
|
| @@ -0,0 +1,9 @@
|
| +# Software-based Trusted Platform Module (TPM) Emulator
|
| +# Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
|
| +#
|
| +# $Id: CMakeLists.txt 364 2010-02-11 10:24:45Z mast $
|
| +
|
| +file(GLOB crypto_SRCS "*.[h|c]")
|
| +add_library(crypto STATIC ${crypto_SRCS})
|
| +target_link_libraries(crypto gmp)
|
| +
|
|
|