[Code] Ordner Umstrukturierung
This commit is contained in:
parent
13af6dd6f2
commit
6861ca9707
4 changed files with 3 additions and 3 deletions
|
@ -7,15 +7,15 @@ endif()
|
|||
find_package(OpenGL REQUIRED)
|
||||
find_package(GLUT REQUIRED)
|
||||
|
||||
add_executable (hello_world hello_world/helloWorld.c)
|
||||
add_executable (hello_world helloWorld.c)
|
||||
target_include_directories(hello_world PRIVATE ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS})
|
||||
target_link_libraries(hello_world ${OPENGL_LIBRARIES} ${GLUT_LIBRARY})
|
||||
|
||||
add_executable (culling box/template_culling.c)
|
||||
add_executable (culling template_culling.c)
|
||||
target_include_directories(culling PRIVATE ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS})
|
||||
target_link_libraries(culling ${OPENGL_LIBRARIES} ${GLUT_LIBRARY})
|
||||
|
||||
add_executable (koordinatensystem box/template_koordinatensystemUndPunkte.c)
|
||||
add_executable (koordinatensystem template_koordinatensystemUndPunkte.c)
|
||||
target_include_directories(koordinatensystem PRIVATE ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS})
|
||||
target_link_libraries(koordinatensystem ${OPENGL_LIBRARIES} ${GLUT_LIBRARY})
|
||||
target_link_libraries(koordinatensystem m) # Math library
|
||||
|
|
Loading…
Reference in a new issue