mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-12-06 20:06:34 +01:00
refactor, move vulkan to proper location
This commit is contained in:
26
framework/vulkan_renderer/CMakeLists.txt
Normal file
26
framework/vulkan_renderer/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
||||
|
||||
project(vulkan_renderer CXX)
|
||||
|
||||
add_library(vulkan_renderer
|
||||
src/mm/services/vulkan_renderer.hpp
|
||||
src/mm/services/vulkan_renderer.cpp
|
||||
)
|
||||
|
||||
target_include_directories(vulkan_renderer PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
||||
|
||||
target_link_libraries(vulkan_renderer
|
||||
Vulkan::Headers
|
||||
|
||||
engine
|
||||
logger
|
||||
|
||||
sdl_service
|
||||
)
|
||||
|
||||
########################
|
||||
|
||||
if (BUILD_TESTING)
|
||||
add_subdirectory(test)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user