Some checks failed
cpp-template / build (Debug, aarch64-linux-gnu) (push) Failing after 27s
cpp-template / build (Release, mipsel-linux-gnu) (push) Failing after 12m45s
cpp-template / build (Release, host.gcc) (push) Failing after 12m52s
cpp-template / build (Release, arm-linux-gnueabihf) (push) Failing after 12m55s
cpp-template / build (Release, aarch64-linux-gnu) (push) Failing after 13m1s
cpp-template / build (Debug, mipsel-linux-gnu) (push) Failing after 13m6s
cpp-template / build (Debug, host.gcc) (push) Failing after 13m11s
cpp-template / build (Debug, arm-linux-gnueabihf) (push) Failing after 13m19s
34 lines
999 B
CMake
34 lines
999 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake)
|
|
|
|
# we target C++11 for the client part
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
project(
|
|
tracy-test
|
|
LANGUAGES C CXX
|
|
VERSION ${TRACY_VERSION_STRING})
|
|
|
|
file(GENERATE OUTPUT .gitignore CONTENT "*")
|
|
|
|
# a bit weird but works: include the client cmake config coming from top-level
|
|
# cmake needs us to specify the build subfolder -> client/ this way we can
|
|
# simply link the test executable against TracyClient
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/.. client/)
|
|
|
|
add_executable(tracy-test test.cpp)
|
|
target_link_options(tracy-test PRIVATE -rdynamic)
|
|
target_link_libraries(tracy-test TracyClient)
|
|
|
|
# OS-specific options
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
|
|
target_link_libraries(tracy-test "execinfo")
|
|
endif()
|
|
|
|
# copy image file in build folder
|
|
configure_file(${CMAKE_CURRENT_LIST_DIR}/image.jpg image.jpg COPYONLY)
|
|
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT tracy-test)
|