Move source files into src and include
This commit is contained in:
parent
d9db9693b1
commit
582428fc71
4 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ find_package(SDL2 REQUIRED)
|
||||||
find_package(Vulkan REQUIRED)
|
find_package(Vulkan REQUIRED)
|
||||||
|
|
||||||
add_executable(Graph
|
add_executable(Graph
|
||||||
main.cpp
|
src/main.cpp
|
||||||
renderer.cpp)
|
src/renderer.cpp)
|
||||||
target_link_libraries(Graph PUBLIC SDL2::SDL2 SDL2::SDL2main ${Vulkan_LIBRARY})
|
target_link_libraries(Graph PUBLIC SDL2::SDL2 SDL2::SDL2main ${Vulkan_LIBRARY})
|
||||||
target_include_directories(Graph PUBLIC ${Vulkan_INCLUDE_DIRS})
|
target_include_directories(Graph PUBLIC include ${Vulkan_INCLUDE_DIRS})
|
||||||
|
|
Reference in a new issue