eden/tools/maxwell-disas/CMakeLists.txt
lizzie df20200245 [tools] add separate maxwell disassembler and spirv translator
Signed-off-by: lizzie <lizzie@eden-emu.dev>
2026-04-21 19:30:36 +02:00

10 lines
419 B
CMake

# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
# SPDX-License-Identifier: GPL-3.0-or-later
add_executable(maxwell-disas main.cpp)
target_link_libraries(maxwell-disas PRIVATE common shader_recompiler Threads::Threads)
target_include_directories(maxwell-disas PRIVATE ${CMAKE_SOURCE_DIR}/src)
if(UNIX AND NOT APPLE)
install(TARGETS maxwell-disas)
endif()
create_target_directory_groups(maxwell-disas)