]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - ptxed/CMakeLists.txt
Import Intel Processor Trace library.
[FreeBSD/FreeBSD.git] / ptxed / 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 set(XED_INCLUDE "" CACHE PATH "")
28 set(XED_LIBDIR  "" CACHE PATH "")
29
30 include_directories(
31   include
32   ../libipt/internal/include
33 )
34
35 include_directories(SYSTEM
36   ${XED_INCLUDE}
37 )
38
39 link_directories(
40   ${XED_LIBDIR}
41 )
42
43 set(PTXED_FILES
44   src/ptxed.c
45   ../libipt/src/pt_cpu.c
46 )
47
48 if (CMAKE_HOST_UNIX)
49   set(PTXED_FILES ${PTXED_FILES} ../libipt/src/posix/pt_cpuid.c)
50 endif (CMAKE_HOST_UNIX)
51
52 if (CMAKE_HOST_WIN32)
53   set(PTXED_FILES ${PTXED_FILES} ../libipt/src/windows/pt_cpuid.c)
54 endif (CMAKE_HOST_WIN32)
55
56 if (FEATURE_ELF)
57   set(PTXED_FILES ${PTXED_FILES} src/load_elf.c)
58 endif (FEATURE_ELF)
59
60 add_executable(ptxed
61   ${PTXED_FILES}
62 )
63 target_link_libraries(ptxed libipt)
64 target_link_libraries(ptxed xed)
65
66 if (SIDEBAND)
67   target_link_libraries(ptxed libipt-sb)
68 endif (SIDEBAND)
69
70 if (CMAKE_HOST_WIN32)
71   # suppress warnings from XED header files
72   #
73   #   w4127: conditional expression is constant
74   #   w4244: conversion: possible loss of data
75   #
76   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127")
77   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4244")
78
79 endif (CMAKE_HOST_WIN32)