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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « tpmd/unix/tpmd.c ('k') | tpmd/windows/control_tpmd.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Software-based Trusted Platform Module (TPM) Emulator
2 # Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
3 #
4 # $Id: CMakeLists.txt 404 2010-02-18 23:08:35Z mast $
5
6 include_directories("${PROJECT_SOURCE_DIR}/tpm")
7
8 file(GLOB tpmd_SRCS "*.[h|c]")
9 add_executable(tpmd ${tpmd_SRCS})
10 if(MTM_EMULATOR)
11 add_definitions(-DMTM_EMULATOR)
12 target_link_libraries(tpmd mtm tpm crypto)
13 else()
14 target_link_libraries(tpmd tpm crypto)
15 endif()
16 install(TARGETS tpmd RUNTIME DESTINATION .)
17
18 install(FILES control_tpmd.bat DESTINATION .)
19
OLDNEW
« 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