| Index: mtm/CMakeLists.txt
|
| diff --git a/mtm/CMakeLists.txt b/mtm/CMakeLists.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7bbb132267b41f297f08b64243517e398b1adf7c
|
| --- /dev/null
|
| +++ b/mtm/CMakeLists.txt
|
| @@ -0,0 +1,10 @@
|
| +# Software-based Trusted Platform Module (TPM) Emulator
|
| +# Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
|
| +#
|
| +# $Id: CMakeLists.txt 376 2010-02-16 14:51:42Z mast $
|
| +
|
| +add_definitions(-DMTM_EMULATOR)
|
| +file(GLOB tpm_SRCS ../tpm/tpm_cmd_handler.c ../tpm/tpm_data.c)
|
| +file(GLOB mtm_SRCS "*.[h|c]")
|
| +add_library(mtm STATIC ${mtm_SRCS} ${tpm_SRCS})
|
| +
|
|
|