Skip to content

Commit 3788670

Browse files
committed
Removing unnecessary changes from earlier iterations
These changes are not actually needed, I just didn't have the linkage and paths correct.
1 parent ad36a55 commit 3788670

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,7 @@ macro(add_offloadtest_library name)
4141
set_target_properties(OffloadTest${name} PROPERTIES FOLDER "Offload Test/Libraries")
4242
endmacro()
4343

44-
if (APPLE)
45-
set(OPTIONAL_MOLTEN COMPONENTS MoltenVK)
46-
endif()
47-
48-
find_package(Vulkan ${OPTIONAL_MOLTEN})
44+
find_package(Vulkan)
4945
message(STATUS "Vulkan Include Dirs: ${Vulkan_INCLUDE_DIRS}")
5046
if (Vulkan_INCLUDE_DIRS)
5147
set(OFFLOADTEST_ENABLE_VULKAN On)

lib/API/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ if (APPLE)
2424
"-framework MetalKit"
2525
"-framework AppKit"
2626
"-framework Foundation"
27-
"-framework QuartzCore"
28-
${api_frameworks})
27+
"-framework QuartzCore")
2928
list(APPEND api_headers PRIVATE ${METAL_INCLUDE_DIRS})
3029
endif()
3130

0 commit comments

Comments
 (0)