add missed cmake file

This commit is contained in:
DH 2025-12-25 21:55:51 +03:00
parent f3e99445d7
commit d8fdf8209e

View file

@ -0,0 +1,9 @@
if (NOT TARGET pugixml::pugixml)
find_package(pugixml)
endif()
if (TARGET pugixml::pugixml)
add_executable(amdgpu-gen amdgpu-gen.cpp)
target_link_libraries(amdgpu-gen PUBLIC pugixml::pugixml nlohmann_json::nlohmann_json)
endif()