-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
34 lines (21 loc) · 889 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# CMakeList.txt : CMake project for openxrOptix, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
project ("openxrOptix")
include_directories("C:/vcpkg/installed/x64-windows/include")
include_directories("C:/vcpkg/installed/x64-windows/include/glm")
# Add source to this project's executable.
add_executable (openxrOptix openxrOptix.cpp
openxrOptix.h
GLSLShader.h
GLSLShader.cpp
shaders/simple.fs
shaders/simple.vs
)
target_link_libraries(openxrOptix "C:/vcpkg/installed/x64-windows/lib/glew32.lib"
"C:/vcpkg/installed/x64-windows/lib/OpenGL32.lib"
"C:/vcpkg/installed/x64-windows/lib/GlU32.lib"
"C:/vcpkg/installed/x64-windows/lib/glfw3dll.lib"
)
# TODO: Add tests and install targets if needed.