Chromium Code Reviews| Index: tpm/CMakeLists.txt |
| diff --git a/tpm/CMakeLists.txt b/tpm/CMakeLists.txt |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e4d5a4e14677b52333753962613fb7143c8e35d6 |
| --- /dev/null |
| +++ b/tpm/CMakeLists.txt |
| @@ -0,0 +1,8 @@ |
| +# 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 tpm_SRCS "*.[h|c]") |
| +add_library(tpm STATIC ${tpm_SRCS}) |
| + |