]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - pttc/CMakeLists.txt
Import Intel Processor Trace library.
[FreeBSD/FreeBSD.git] / pttc / 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(PTTC_FILES
33   src/errcode.c
34   src/file.c
35   src/parse.c
36   src/pttc.c
37   src/util.c
38   src/yasm.c
39   ../libipt/src/pt_cpu.c
40 )
41
42 if (CMAKE_HOST_UNIX)
43   set(PTTC_FILES
44     ${PTTC_FILES}
45     src/posix/util.c
46     ../libipt/src/posix/pt_cpuid.c
47   )
48 endif (CMAKE_HOST_UNIX)
49
50 if (CMAKE_HOST_WIN32)
51   set(PTTC_FILES
52     ${PTTC_FILES}
53     src/windows/util.c
54     ../libipt/src/windows/pt_cpuid.c
55   )
56 endif (CMAKE_HOST_WIN32)
57
58 add_executable(pttc
59   ${PTTC_FILES}
60
61   src/main.c
62 )
63
64 target_link_libraries(pttc libipt)
65
66 if (PEVENT)
67   target_link_libraries(pttc pevent)
68 endif (PEVENT)