Skip to content
Snippets Groups Projects
Commit 6f308e4d authored by Vanessa Karolek's avatar Vanessa Karolek
Browse files

[#92] add base RTX module

ToDo's:
- renaming?
- remove test files (they were created just for testing)
- add RTX functionality to module
parent 4054f76e
No related branches found
No related tags found
1 merge request!75Resolve "RTX-Module"
......@@ -4,5 +4,6 @@ add_subdirectory(asset_loader)
add_subdirectory(material)
add_subdirectory(camera)
add_subdirectory(gui)
add_subdirectory(rtx)
add_subdirectory(shader_compiler)
add_subdirectory(testing)
cmake_minimum_required(VERSION 3.16)
project(vkcv_rtx)
# setting c++ standard for the project
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(vkcv_rtx_source ${PROJECT_SOURCE_DIR}/src)
set(vkcv_rtx_include ${PROJECT_SOURCE_DIR}/include)
set(vkcv_rtx_sources
${vkcv_rtx_include}/vkcv/rtx/Test.hpp # todo: remove
${vkcv_rtx_source}/vkcv/rtx/Test.cpp # todo: remove
)
# adding source files to the project
add_library(vkcv_rtx STATIC ${vkcv_rtx_sources})
# add the own include directory for public headers
target_include_directories(vkcv_rtx BEFORE PUBLIC ${vkcv_rtx_include})
\ No newline at end of file
// todo: remove
\ No newline at end of file
// todo: remove
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment