Skip to content

Commit

Permalink
Linux fix
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Nov 1, 2024
1 parent 0f17a00 commit 3645633
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions ports/uvatlas/Fix-for-CMake-on-WSL.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
From ef9fcbcce828b777fd22e00b4092b525a2dc3b17 Mon Sep 17 00:00:00 2001
From: Chuck Walbourn <[email protected]>
Date: Thu, 31 Oct 2024 18:29:06 -0700
Subject: [PATCH] Fix for CMake on WSL

---
CMakeLists.txt | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index ae19481..5656d03 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -139,7 +139,11 @@ endif()

if(MINGW OR (NOT WIN32))
find_package(directxmath CONFIG REQUIRED)
+ target_link_libraries(${PROJECT_NAME} PUBLIC Microsoft::DirectXMath)
+
find_package(directx-headers CONFIG REQUIRED)
+ target_link_libraries(${PROJECT_NAME} PUBLIC Microsoft::DirectX-Headers)
+ target_compile_definitions(${PROJECT_NAME} PUBLIC USING_DIRECTX_HEADERS)
else()
find_package(directxmath CONFIG QUIET)
find_package(directx-headers CONFIG QUIET)
--
2.47.0.windows.1

1 change: 1 addition & 0 deletions ports/uvatlas/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ vcpkg_from_github(
HEAD_REF main
PATCHES
CMakeHeadersPrivate.patch
Fix-for-CMake-on-WSL.patch
)

vcpkg_check_features(
Expand Down

0 comments on commit 3645633

Please sign in to comment.