mirror of
https://github.com/minetest/irrlicht.git
synced 2025-02-12 01:20:24 +01:00
21 lines
315 B
CMake
21 lines
315 B
CMake
|
add_executable(tests
|
||
|
testCGLTFMeshFileLoader.cpp
|
||
|
)
|
||
|
|
||
|
set_target_properties(tests PROPERTIES
|
||
|
CXX_STANDARD 11
|
||
|
CXX_STANDARD_REQUIRED YES
|
||
|
CXX_EXTENSIONS NO
|
||
|
)
|
||
|
|
||
|
target_compile_options(tests
|
||
|
PRIVATE
|
||
|
"$<$<CXX_COMPILER_ID:GNU>:-Wall>"
|
||
|
)
|
||
|
|
||
|
target_link_libraries(tests
|
||
|
PRIVATE
|
||
|
Catch2::Catch
|
||
|
IrrlichtMt::IrrlichtMt
|
||
|
)
|