diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-10 19:24:12 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-10 19:24:12 -0500 |
| commit | f07294ca65143fac8b1b426d1854212403721226 (patch) | |
| tree | 2edeb8f2c9beea1cbb065f69910d53957ebda0ce /CMakeLists.txt | |
| parent | 294c85f91ac5b2ff9e4ad3d99588ed0d1a72e6b7 (diff) | |
checkpoint - handle breaking ECS changes - compiles
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) |
