Archived
1
Fork 0

Move source files into src and include

This commit is contained in:
Joshua Goins 2018-09-27 22:51:26 -04:00
parent d9db9693b1
commit 582428fc71
4 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ find_package(SDL2 REQUIRED)
find_package(Vulkan REQUIRED)
add_executable(Graph
main.cpp
renderer.cpp)
src/main.cpp
src/renderer.cpp)
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})