vcpkg/ports/tracy/portfile.cmake
2023-02-03 14:08:58 -08:00

157 lines
5.3 KiB
CMake

# It is possible to run into some issues when profiling when we uses Tracy client as a shared client
# As as safety measure let's build Tracy as a static library for now
# More details on Tracy Discord (e.g. https://discord.com/channels/585214693895962624/585214693895962630/953599951328403506)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO wolfpld/tracy
REF v0.9
SHA512 00e8ff6d73d0428eb7a77fc5e0556458285922fbf9d5f0d42ed4f27ff98ffcd96b0f59bbaa3c103fd0903283ded6e7577d2a49362e5803cdbac0f3236af957cb
HEAD_REF master
PATCHES
001-fix-vcxproj-vcpkg.patch
002-fix-capstone-5.patch
003-fix-imgui-path.patch
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
on-demand TRACY_ON_DEMAND)
vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS ${FEATURE_OPTIONS}
)
vcpkg_cmake_install()
if(VCPKG_TARGET_IS_LINUX)
set(any_tracy_tool_requested OFF)
if(profiler IN_LIST FEATURES)
message(WARNING
"Tracy currently requires the following libraries from the system package manager to build its tools:
gtk+-3.0
tbb
These can be installed on Ubuntu systems via sudo apt install libgtk-3-dev libtbb-dev")
set(any_tracy_tool_requested ON)
else()
foreach(CLI_TOOL capture csvexport import-chrome update)
if(${CLI_TOOL} IN_LIST FEATURES)
message(WARNING
"Tracy currently requires the following libraries from the system package manager to build its tools:
tbb
These can be installed on Ubuntu systems via sudo apt install libtbb-dev")
set(any_tracy_tool_requested ON)
break()
endif()
endforeach()
endif()
endif()
vcpkg_list(SET tracy_tools)
if("cli-tools" IN_LIST FEATURES)
vcpkg_list(APPEND tracy_tools capture csvexport import-chrome update)
endif()
if("gui-tools" IN_LIST FEATURES)
vcpkg_list(APPEND tracy_tools profiler)
endif()
function(tracy_tool_install_make tracy_TOOL tracy_TOOL_NAME)
foreach(buildtype IN ITEMS "debug" "release")
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "${buildtype}")
if("${buildtype}" STREQUAL "debug")
set(short_buildtype "-dbg")
set(path_suffix "/debug")
else()
set(short_buildtype "-rel")
set(path_suffix "")
endif()
file(COPY "${SOURCE_PATH}/${tracy_TOOL}/build/unix" DESTINATION "${SOURCE_PATH}/${tracy_TOOL}/_build")
file(RENAME "${SOURCE_PATH}/${tracy_TOOL}/_build/unix" "${SOURCE_PATH}/${tracy_TOOL}/build/unix${short_buildtype}")
file(REMOVE_RECURSE "${SOURCE_PATH}/${tracy_TOOL}/_build")
set(path_makefile_dir "${SOURCE_PATH}/${tracy_TOOL}/build/unix${short_buildtype}")
cmake_path(RELATIVE_PATH path_makefile_dir
BASE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}${short_buildtype}"
OUTPUT_VARIABLE relative_path_makefile_dir)
vcpkg_backup_env_variables(VARS PKG_CONFIG_PATH)
vcpkg_host_path_list(PREPEND ENV{PKG_CONFIG_PATH} "${CURRENT_INSTALLED_DIR}${path_suffix}/lib/pkgconfig")
message(STATUS "Building ${tracy_TOOL_NAME} ${TARGET_TRIPLET}${short_buildtype}")
vcpkg_build_make(
BUILD_TARGET ${buildtype}
SUBPATH ${relative_path_makefile_dir}
LOGFILE_ROOT "build-${tracy_TOOL}"
)
vcpkg_restore_env_variables(VARS PKG_CONFIG_PATH)
file(INSTALL "${SOURCE_PATH}/${tracy_TOOL}/build/unix${short_buildtype}/${tracy_TOOL_NAME}-${buildtype}" DESTINATION "${CURRENT_PACKAGES_DIR}${path_suffix}/tools/${PORT}" RENAME "${tracy_TOOL_NAME}")
endif()
endforeach()
endfunction()
function(tracy_tool_install_win32 tracy_TOOL tracy_TOOL_NAME)
vcpkg_install_msbuild(
SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH "${tracy_TOOL}/build/win32/${tracy_TOOL_NAME}.sln"
USE_VCPKG_INTEGRATION
)
endfunction()
if("capture" IN_LIST tracy_tools)
if(VCPKG_TARGET_IS_WINDOWS)
tracy_tool_install_win32(capture capture)
else()
tracy_tool_install_make(capture capture)
endif()
endif()
if("csvexport" IN_LIST tracy_tools)
if(VCPKG_TARGET_IS_WINDOWS)
tracy_tool_install_win32(csvexport csvexport)
else()
tracy_tool_install_make(csvexport csvexport)
endif()
endif()
if("import-chrome" IN_LIST tracy_tools)
if(VCPKG_TARGET_IS_WINDOWS)
tracy_tool_install_win32(import-chrome import-chrome)
else()
tracy_tool_install_make(import-chrome import-chrome)
endif()
endif()
if("profiler" IN_LIST tracy_tools)
if(VCPKG_TARGET_IS_WINDOWS)
tracy_tool_install_win32(profiler Tracy)
else()
tracy_tool_install_make(profiler Tracy)
endif()
endif()
if("update" IN_LIST tracy_tools)
if(VCPKG_TARGET_IS_WINDOWS)
tracy_tool_install_win32(update update)
else()
tracy_tool_install_make(update update)
endif()
endif()
vcpkg_copy_pdbs()
vcpkg_cmake_config_fixup(PACKAGE_NAME Tracy)
vcpkg_fixup_pkgconfig()
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
# Cleanup
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")