Files
eden/externals/powah/CMakeLists.txt
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
420 B
CMake
Raw Normal View History

2026-01-14 20:02:52 +00:00
# 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})
2025-11-23 20:43:29 -05:00
target_compile_options(powah INTERFACE -Wno-unused-parameter)
2026-01-14 20:02:52 +00:00
add_executable(powah_tests tests.cpp)
create_target_directory_groups(powah_tests)
target_link_libraries(powah_tests PRIVATE Catch2::Catch2WithMain)