mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Temp: Remove CI linux dependencies auto download dependencies install libs with choco name artifacts use LINK_LIBRARIES add concurrency install dependencies install dependencies install dependencies passwordless sudo windows fix more windows fixes more windows fixes no statistics
18 lines
531 B
CMake
18 lines
531 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
project(update C CXX ASM)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/vendor.cmake)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/server.cmake)
|
|
|
|
set(UPDATE_SOURCE
|
|
src/OfflineSymbolResolverDbgHelper.cpp
|
|
src/OfflineSymbolResolver.cpp
|
|
src/OfflineSymbolResolverAddr2Line.cpp
|
|
src/update.cpp
|
|
)
|
|
|
|
add_executable(update ${UPDATE_SOURCE})
|
|
target_include_directories(update PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
target_link_libraries(update PRIVATE TracyServer) |