mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-14 02:53:02 +01:00
13 lines
244 B
CMake
13 lines
244 B
CMake
|
add_executable(opengl_fbo_test fbo_test.cpp)
|
||
|
|
||
|
target_include_directories(opengl_fbo_test PRIVATE ".")
|
||
|
|
||
|
target_link_libraries(opengl_fbo_test
|
||
|
opengl_primitives
|
||
|
sdl_service
|
||
|
gtest_main
|
||
|
)
|
||
|
|
||
|
add_test(NAME opengl_fbo_test COMMAND opengl_fbo_test)
|
||
|
|