Skip to content

Commit

Permalink
Merge pull request #23747 from fuzzard/cmake_win_detours
Browse files Browse the repository at this point in the history
[cmake] Add FindDetours for windows
  • Loading branch information
fuzzard committed Sep 12, 2023
2 parents 4989052 + e2423c7 commit 38128e2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 6 deletions.
37 changes: 37 additions & 0 deletions cmake/modules/FindDetours.cmake
@@ -0,0 +1,37 @@
#.rst:
# FindDetours
# --------
# Finds the Detours library
#
# This will define the following target:
#
# windows::Detours - The Detours library

if(NOT TARGET windows::Detours)
find_path(DETOURS_INCLUDE_DIR NAMES detours.h
NO_CACHE)

find_library(DETOURS_LIBRARY_RELEASE NAMES detours
NO_CACHE)
find_library(DETOURS_LIBRARY_DEBUG NAMES detoursd
NO_CACHE)

include(SelectLibraryConfigurations)
select_library_configurations(DETOURS)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Detours
REQUIRED_VARS DETOURS_LIBRARY DETOURS_INCLUDE_DIR)

if(DETOURS_FOUND)
add_library(windows::Detours UNKNOWN IMPORTED)
set_target_properties(windows::Detours PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${DETOURS_INCLUDE_DIR}"
IMPORTED_LOCATION "${DETOURS_LIBRARY_RELEASE}")
if(DETOURS_LIBRARY_DEBUG)
set_target_properties(windows::Detours PROPERTIES
IMPORTED_LOCATION_DEBUG "${DETOURS_LIBRARY_DEBUG}")
endif()
set_property(GLOBAL APPEND PROPERTY INTERNAL_DEPS_PROP windows::Detours)
endif()
endif()
2 changes: 1 addition & 1 deletion cmake/platform/windows/windows.cmake
@@ -1,3 +1,3 @@
set(PLATFORM_REQUIRED_DEPS D3DX11Effects)
set(PLATFORM_REQUIRED_DEPS D3DX11Effects Detours)
set(APP_RENDER_SYSTEM dx11)
list(APPEND PLATFORM_DEFINES -DNTDDI_VERSION=NTDDI_WINBLUE -D_WIN32_WINNT=_WIN32_WINNT_WINBLUE)
5 changes: 0 additions & 5 deletions xbmc/windowing/windows/WinSystemWin32DX.cpp
Expand Up @@ -25,11 +25,6 @@
#ifndef _M_X64
#include "utils/SystemInfo.h"
#endif
#if _DEBUG
#pragma comment(lib, "detoursd.lib")
#else
#pragma comment(lib, "detours.lib")
#endif
#pragma comment(lib, "dxgi.lib")
#include <windows.h>
#include <winnt.h>
Expand Down

0 comments on commit 38128e2

Please sign in to comment.