Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
32 lines
907 B
CMake
32 lines
907 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)
|