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

Unified Diff: tpmd/unix/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/Makefile ('k') | tpmd/unix/tpmd.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tpmd/unix/CMakeLists.txt
diff --git a/tpmd/unix/CMakeLists.txt b/tpmd/unix/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e1c4e4a9998326d522a23668f19b591b3d654e60
--- /dev/null
+++ b/tpmd/unix/CMakeLists.txt
@@ -0,0 +1,17 @@
+# Software-based Trusted Platform Module (TPM) Emulator
+# Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
+#
+# $Id: CMakeLists.txt 377 2010-02-16 14:52:57Z 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 bin)
+
« no previous file with comments | « tpmd/Makefile ('k') | tpmd/unix/tpmd.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698