forked from cg-tuwien/Auto-Vk-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
16 lines (13 loc) · 736 Bytes
/
CMakeLists.txt
File metadata and controls
16 lines (13 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
add_executable(compute_image_processing
source/compute_image_processing.cpp)
target_include_directories(compute_image_processing PRIVATE ${PROJECT_NAME})
target_link_libraries(compute_image_processing PRIVATE ${PROJECT_NAME})
get_target_property(compute_image_processing_BINARY_DIR compute_image_processing BINARY_DIR)
set(compute_image_processing_assets
${PROJECT_SOURCE_DIR}/assets/3rd_party/models/sponza/textures)
add_post_build_commands(compute_image_processing
${PROJECT_SOURCE_DIR}/examples/compute_image_processing/shaders
${compute_image_processing_BINARY_DIR}/shaders
$<TARGET_FILE_DIR:compute_image_processing>/assets
"${compute_image_processing_assets}"
${avk_toolkit_CreateDependencySymlinks})