feat(fp16): remove SPIR-V Tools dependency

This commit is contained in:
PancakeTAS 2025-08-05 02:33:25 +02:00 committed by Pancake
parent 3a86e5ade4
commit 7bac21f793
2 changed files with 1 additions and 3 deletions

View file

@ -44,7 +44,7 @@ set_target_properties(lsfg-vk PROPERTIES
target_include_directories(lsfg-vk
PUBLIC include)
target_link_libraries(lsfg-vk PUBLIC
pe-parse toml11 SPIRV-Tools-opt)
pe-parse toml11
lsfg-vk-framegen)
get_target_property(TOML11_INCLUDE_DIRS toml11 INTERFACE_INCLUDE_DIRECTORIES)

View file

@ -1,8 +1,6 @@
#include "extract/extract.hpp"
#include "config/config.hpp"
#include <spirv-tools/optimizer.hpp>
#include <spirv-tools/libspirv.h>
#include <pe-parse/parse.h>
#include <unordered_map>