mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-11 12:50:36 +01:00
14 lines
218 B
CMake
14 lines
218 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(Catch2
|
|
LANGUAGES CXX
|
|
)
|
|
|
|
add_library(Catch2 INTERFACE)
|
|
add_library(Catch2::Catch ALIAS Catch2)
|
|
|
|
target_include_directories(Catch2
|
|
INTERFACE
|
|
"${PROJECT_SOURCE_DIR}"
|
|
)
|