Skip to content

Commit

Permalink
Implements experimental tracy client multiplexer
Browse files Browse the repository at this point in the history
  • Loading branch information
cipharius committed Apr 4, 2024
1 parent b5b985d commit 57fe755
Show file tree
Hide file tree
Showing 2 changed files with 1,433 additions and 0 deletions.
24 changes: 24 additions & 0 deletions multiplex/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
cmake_minimum_required(VERSION 3.16)

option(NO_ISA_EXTENSIONS "Disable ISA extensions (don't pass -march=native or -mcpu=native to the compiler)" OFF)

include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake)

set(CMAKE_CXX_STANDARD 20)

project(
tracy-multiplex
LANGUAGES ASM C CXX
VERSION ${TRACY_VERSION_STRING}
)

include(${CMAKE_CURRENT_LIST_DIR}/../cmake/config.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/vendor.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/server.cmake)

set(PROGRAM_FILES
src/multiplex.cpp
)

add_executable(${PROJECT_NAME} ${PROGRAM_FILES} ${COMMON_FILES} ${SERVER_FILES})
target_link_libraries(${PROJECT_NAME} PRIVATE TracyServer TracyGetOpt)
Loading

0 comments on commit 57fe755

Please sign in to comment.