blob: 2a8595491d655c6e64194eef218b210b9fb7f377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include_directories (
${OPENGL_INCLUDE_PATH}
${GLEW_INCLUDE_DIR}
)
link_libraries (
${OPENGL_gl_LIBRARY}
${GLEW_glew_LIBRARY}
)
add_executable (wglthreads wglthreads/wglthreads.c)
add_executable (wgl_sharedtex_mt sharedtex_mt/sharedtex_mt.c)
set_target_properties (wgl_sharedtex_mt PROPERTIES OUTPUT_NAME sharedtex_mt)
add_executable (wglinfo wglinfo.c)
install (TARGETS wglthreads wgl_sharedtex_mt wglthreads DESTINATION wgl)
|