mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-14 22:20:15 +02:00
Add test file for glTF mesh loading
This commit is contained in:
committed by
Josiah VanderZee
parent
bde174d1a0
commit
92862a3a2d
21
source/Irrlicht/tests/CMakeLists.txt
Normal file
21
source/Irrlicht/tests/CMakeLists.txt
Normal file
@ -0,0 +1,21 @@
|
||||
add_executable(tests
|
||||
inMemoryFile.cpp inMemoryFile.h
|
||||
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
|
||||
)
|
Reference in New Issue
Block a user