diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dbd9787..7582f10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,12 +119,12 @@ if (Vulkan_FOUND) endif (Vulkan_FOUND) add_library(pke - ${PKE_SOURCE_FILES} + ${PKE_SOURCE_FILES} ) if (Vulkan_FOUND) - target_link_libraries(pke PUBLIC ${Vulkan_LIBRARIES}) - target_include_directories(pke PUBLIC ${Vulkan_INCLUDE_DIR}) + target_link_libraries(pke PUBLIC ${Vulkan_LIBRARIES}) + target_include_directories(pke PUBLIC ${Vulkan_INCLUDE_DIR}) endif (Vulkan_FOUND) set(SHADER_OUTPUT_DIR ${PROJECT_BINARY_DIR}/assets/shaders) @@ -152,9 +152,9 @@ add_custom_target(shaders ALL DEPENDS ${SPV_SHADERS}) find_package(PkgConfig REQUIRED) pkg_search_module(GLFW REQUIRED glfw3) if (GLFW_FOUND) - message(STATUS "GLFW found: " ${GLFW_INCLUDE_DIR}) - target_link_libraries(pke PUBLIC ${GLFW_LIBRARIES}) - target_include_directories(pke PUBLIC ${GLFW_INCLUDE_DIR}) + message(STATUS "GLFW found: " ${GLFW_INCLUDE_DIR}) + target_link_libraries(pke PUBLIC ${GLFW_LIBRARIES}) + target_include_directories(pke PUBLIC ${GLFW_INCLUDE_DIR}) endif (GLFW_FOUND) find_package(glm REQUIRED) |
