mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-10-29 22:45:34 +01:00
39 lines
1022 B
CMake
39 lines
1022 B
CMake
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
|
|
|
if(NOT EMSCRIPTEN)
|
|
add_library(tracy_client
|
|
"${CMAKE_CURRENT_LIST_DIR}/tracy/Tracy.hpp"
|
|
"${CMAKE_CURRENT_LIST_DIR}/tracy/TracyLua.hpp"
|
|
"${CMAKE_CURRENT_LIST_DIR}/tracy/TracyVulkan.hpp"
|
|
"${CMAKE_CURRENT_LIST_DIR}/tracy/TracyOpenGL.hpp"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/tracy/TracyClient.cpp"
|
|
)
|
|
|
|
if(TRACY_ENABLE)
|
|
target_compile_definitions(tracy_client PUBLIC TRACY_ENABLE)
|
|
#target_compile_definitions(tracy_client PUBLIC TRACY_NO_SYSTEM_TRACING)
|
|
message("Enabled TRACY")
|
|
endif()
|
|
|
|
target_compile_features(tracy_client PUBLIC cxx_std_17)
|
|
|
|
target_include_directories(tracy_client PUBLIC "${CMAKE_CURRENT_LIST_DIR}")
|
|
|
|
if(UNIX)
|
|
target_link_libraries(tracy_client dl)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
target_link_libraries(tracy_client ws2_32 dbghelp)
|
|
endif()
|
|
else() # EMSCRIPTEN
|
|
add_library(tracy_client INTERFACE)
|
|
|
|
target_compile_features(tracy_client INTERFACE cxx_std_17)
|
|
|
|
target_include_directories(tracy_client INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
|
|
endif()
|
|
|
|
|