Commit 97711e99fec602d6526b086d791e86d6d684cda4

Anonymous Maarten 2022-06-15T18:57:13

cmake: no need to explicitly add a depency (target_link_libraries does this implicitly)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 4cdb237..62241fb 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -253,10 +253,8 @@ if(SDL_DUMMYVIDEO)
 endif()
 
 if(OPENGL_FOUND)
-add_dependencies(testshader OpenGL::GL)
-add_dependencies(testgl2 OpenGL::GL)
-target_link_libraries(testshader OpenGL::GL)
-target_link_libraries(testgl2 OpenGL::GL)
+    target_link_libraries(testshader OpenGL::GL)
+    target_link_libraries(testgl2 OpenGL::GL)
 endif()
 
 file(GLOB RESOURCE_FILES *.bmp *.wav *.hex moose.dat utf8.txt)