Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: tpmd/windows/CMakeLists.txt

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tpmd/unix/tpmd.c ('k') | tpmd/windows/control_tpmd.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tpmd/windows/CMakeLists.txt
diff --git a/tpmd/windows/CMakeLists.txt b/tpmd/windows/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5dbe79f0bbec7bdfa93e7da831a94f85596798d2
--- /dev/null
+++ b/tpmd/windows/CMakeLists.txt
@@ -0,0 +1,19 @@
+# Software-based Trusted Platform Module (TPM) Emulator
+# Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
+#
+# $Id: CMakeLists.txt 404 2010-02-18 23:08:35Z mast $
+
+include_directories("${PROJECT_SOURCE_DIR}/tpm")
+
+file(GLOB tpmd_SRCS "*.[h|c]")
+add_executable(tpmd ${tpmd_SRCS})
+if(MTM_EMULATOR)
+add_definitions(-DMTM_EMULATOR)
+target_link_libraries(tpmd mtm tpm crypto)
+else()
+target_link_libraries(tpmd tpm crypto)
+endif()
+install(TARGETS tpmd RUNTIME DESTINATION .)
+
+install(FILES control_tpmd.bat DESTINATION .)
+
« no previous file with comments | « tpmd/unix/tpmd.c ('k') | tpmd/windows/control_tpmd.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698