]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - ptdump/CMakeLists.txt
Import Intel Processor Trace library.
[FreeBSD/FreeBSD.git] / ptdump / CMakeLists.txt
1 # Copyright (c) 2013-2018, Intel Corporation
2 #
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are met:
5 #
6 #  * Redistributions of source code must retain the above copyright notice,
7 #    this list of conditions and the following disclaimer.
8 #  * Redistributions in binary form must reproduce the above copyright notice,
9 #    this list of conditions and the following disclaimer in the documentation
10 #    and/or other materials provided with the distribution.
11 #  * Neither the name of Intel Corporation nor the names of its contributors
12 #    may be used to endorse or promote products derived from this software
13 #    without specific prior written permission.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 # POSSIBILITY OF SUCH DAMAGE.
26
27 include_directories(
28   include
29   ../libipt/internal/include
30 )
31
32 set(PTDUMP_FILES
33   src/ptdump.c
34   ../libipt/src/pt_last_ip.c
35   ../libipt/src/pt_cpu.c
36   ../libipt/src/pt_time.c
37 )
38
39 if (CMAKE_HOST_UNIX)
40   set(PTDUMP_FILES ${PTDUMP_FILES} ../libipt/src/posix/pt_cpuid.c)
41 endif (CMAKE_HOST_UNIX)
42
43 if (CMAKE_HOST_WIN32)
44   set(PTDUMP_FILES ${PTDUMP_FILES} ../libipt/src/windows/pt_cpuid.c)
45 endif (CMAKE_HOST_WIN32)
46
47 add_executable(ptdump
48   ${PTDUMP_FILES}
49 )
50
51 target_link_libraries(ptdump libipt)
52 if (SIDEBAND)
53   target_link_libraries(ptdump libipt-sb)
54 endif (SIDEBAND)