You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.8 KiB
71 lines
2.8 KiB
# Copyright (C) 2020 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
project(perfetto-sdk-example)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
find_package(Threads)
|
|
|
|
# Define a static library for Perfetto. In this example, we expect the SDK
|
|
# (perfetto.cc and perfetto.h) to live in the top level sdk/ directory.
|
|
include_directories(../../sdk)
|
|
add_library(perfetto STATIC ../../sdk/perfetto.cc)
|
|
|
|
# Link the library to the main executables.
|
|
add_executable(example example.cc trace_categories.cc)
|
|
add_executable(example_system_wide example_system_wide.cc
|
|
trace_categories.cc)
|
|
add_executable(example_custom_data_source example_custom_data_source.cc)
|
|
add_executable(example_console example_console.cc trace_categories.cc)
|
|
|
|
target_link_libraries(example perfetto
|
|
${CMAKE_THREAD_LIBS_INIT})
|
|
target_link_libraries(example_system_wide perfetto
|
|
${CMAKE_THREAD_LIBS_INIT})
|
|
target_link_libraries(example_custom_data_source perfetto
|
|
${CMAKE_THREAD_LIBS_INIT})
|
|
target_link_libraries(example_console perfetto
|
|
${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
# On Android we also need the logging library.
|
|
if (ANDROID)
|
|
target_link_libraries(example log)
|
|
target_link_libraries(example_system_wide log)
|
|
target_link_libraries(example_custom_data_source log)
|
|
target_link_libraries(example_console log)
|
|
endif (ANDROID)
|
|
|
|
if (WIN32)
|
|
# The perfetto library contains many symbols, so it needs the big object
|
|
# format.
|
|
target_compile_options(perfetto PRIVATE "/bigobj")
|
|
# Disable legacy features in windows.h.
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN -DNOMINMAX)
|
|
# On Windows we should link to WinSock2.
|
|
target_link_libraries(example ws2_32)
|
|
target_link_libraries(example_system_wide ws2_32)
|
|
target_link_libraries(example_custom_data_source ws2_32)
|
|
target_link_libraries(example_console ws2_32)
|
|
endif (WIN32)
|
|
|
|
# Enable standards-compliant mode when using the Visual Studio compiler.
|
|
if (MSVC)
|
|
target_compile_options(example PRIVATE "/permissive-")
|
|
target_compile_options(example_system_wide PRIVATE "/permissive-")
|
|
target_compile_options(example_custom_data_source PRIVATE "/permissive-")
|
|
target_compile_options(example_console PRIVATE "/permissive-")
|
|
endif (MSVC) |