From f07294ca65143fac8b1b426d1854212403721226 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Wed, 10 Jan 2024 19:24:12 -0500 Subject: checkpoint - handle breaking ECS changes - compiles --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'CMakeLists.txt') 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) -- cgit v1.2.3