Skip to content
Snippets Groups Projects
Verified Commit 52e5d81e authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#56] Removed bloom project because it got merged into voxelization

parent 53fbfdb3
No related branches found
No related tags found
1 merge request!45Resolve "Szene-Repräsentation"
Pipeline #26293 passed
Showing
with 1 addition and 86 deletions
# Add new projects/examples here:
add_subdirectory(bloom)
add_subdirectory(first_triangle)
add_subdirectory(first_mesh)
add_subdirectory(particle_simulation)
add_subdirectory(first_scene)
add_subdirectory(particle_simulation)
add_subdirectory(voxelization)
bloom
\ No newline at end of file
cmake_minimum_required(VERSION 3.16)
project(bloom)
# setting c++ standard for the project
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# this should fix the execution path to load local files from the project
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
# adding source files to the project
add_executable(bloom src/main.cpp)
target_sources(bloom PRIVATE
src/BloomAndFlares.cpp
src/BloomAndFlares.hpp)
# this should fix the execution path to load local files from the project (for MSVC)
if(MSVC)
set_target_properties(bloom PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
set_target_properties(bloom PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
# in addition to setting the output directory, the working directory has to be set
# by default visual studio sets the working directory to the build directory, when using the debugger
set_target_properties(bloom PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
endif()
# including headers of dependencies and the VkCV framework
target_include_directories(bloom SYSTEM BEFORE PRIVATE ${vkcv_include} ${vkcv_includes} ${vkcv_asset_loader_include} ${vkcv_camera_include} ${vkcv_shader_compiler_include})
# linking with libraries from all dependencies and the VkCV framework
target_link_libraries(bloom vkcv ${vkcv_libraries} vkcv_asset_loader ${vkcv_asset_loader_libraries} vkcv_camera vkcv_shader_compiler)
File deleted
Source diff could not be displayed: it is stored in LFS. Options to address this: view the blob.
projects/bloom/resources/Sponza/background.png

132 B

projects/bloom/resources/Sponza/chain_texture.png

131 B

projects/bloom/resources/Sponza/lion.png

132 B

projects/bloom/resources/Sponza/spnza_bricks_a_diff.png

132 B

projects/bloom/resources/Sponza/sponza_arch_diff.png

132 B

projects/bloom/resources/Sponza/sponza_ceiling_a_diff.png

132 B

projects/bloom/resources/Sponza/sponza_column_a_diff.png

132 B

projects/bloom/resources/Sponza/sponza_column_b_diff.png

132 B

projects/bloom/resources/Sponza/sponza_column_c_diff.png

132 B

projects/bloom/resources/Sponza/sponza_curtain_blue_diff.png

132 B

projects/bloom/resources/Sponza/sponza_curtain_diff.png

132 B

projects/bloom/resources/Sponza/sponza_curtain_green_diff.png

132 B

projects/bloom/resources/Sponza/sponza_details_diff.png

132 B

projects/bloom/resources/Sponza/sponza_fabric_blue_diff.png

132 B

projects/bloom/resources/Sponza/sponza_fabric_diff.png

132 B

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