mirror of
https://github.com/shadps4-emu/shadps4-qtlauncher.git
synced 2026-01-31 01:05:16 +01:00
13 lines
336 B
CMake
13 lines
336 B
CMake
# SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
project(gcn LANGUAGES CXX)
|
|
|
|
add_library(gcn INTERFACE)
|
|
target_sources(gcn PRIVATE
|
|
"include/gcn/si_ci_vi_merged_offset.h"
|
|
"include/gcn/si_ci_vi_merged_pm4_it_opcodes.h"
|
|
)
|
|
|
|
target_include_directories(gcn INTERFACE include)
|