diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-11-05 19:55:35 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-11-05 19:55:35 +0000 |
commit | 1703ebf3771a9fb37df7f610feddb71ee26fc39e (patch) | |
tree | 77ef5ae6aac7e6a789958013ee4d28ea0c233738 /src/wgl/CMakeLists.txt | |
parent | 0b8ac5a93b20ccb2f66514003ee81ad16db2872b (diff) |
cmake: Cover as many demos as SCons.
Diffstat (limited to 'src/wgl/CMakeLists.txt')
-rw-r--r-- | src/wgl/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/wgl/CMakeLists.txt b/src/wgl/CMakeLists.txt new file mode 100644 index 00000000..58df56de --- /dev/null +++ b/src/wgl/CMakeLists.txt @@ -0,0 +1,13 @@ +include_directories ( + ${OPENGL_INCLUDE_PATH} +) + +link_libraries ( + ${OPENGL_gl_LIBRARY} +) + +add_executable (wglthreads wglthreads/wglthreads.c) +add_executable (sharedtex_mt sharedtex_mt/sharedtex_mt.c) +add_executable (wglinfo wglinfo.c) + +install (TARGETS wglthreads sharedtex_mt wglthreads DESTINATION wgl) |