8 lines
218 B
CMake
8 lines
218 B
CMake
add_executable(U3DWithAnimation)
|
|
|
|
target_include_directories(U3DWithAnimation PRIVATE ./)
|
|
target_link_libraries(U3DWithAnimation PRIVATE hoops::samples)
|
|
target_sources(U3DWithAnimation
|
|
PRIVATE
|
|
U3DWithAnimation.cpp
|
|
) |