mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-25 07:29:00 +02:00
9 lines
358 B
CMake
9 lines
358 B
CMake
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
add_library(powah INTERFACE)
|
|
target_include_directories(powah INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable(powah_tests tests.cpp)
|
|
create_target_directory_groups(powah_tests)
|
|
target_link_libraries(powah_tests PRIVATE Catch2::Catch2WithMain)
|