Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
sangjanai committed Dec 19, 2024
1 parent 6e5862a commit 3b5a248
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ ARG CMAKE_EXTRA_FLAGS=""
WORKDIR /app

# Copy source code
COPY ./.github /app/.github
COPY ./engine /app/engine
COPY ./docs/static/openapi/cortex.json /app/docs/static/openapi/cortex.json

Expand Down
1 change: 1 addition & 0 deletions engine/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*.so
*.so.*
*.dylib
!**/libvulkan.so

# Executables
*.exe
Expand Down
4 changes: 2 additions & 2 deletions engine/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ set_target_properties(${TARGET_NAME} PROPERTIES
)

if(UNIX AND NOT APPLE)
configure_file("${PROJECT_SOURCE_DIR}/../../.github/patches/linux/libvulkan.so" "${CMAKE_BINARY_DIR}/libvulkan.so" COPYONLY)
configure_file("${PROJECT_SOURCE_DIR}/../deps/linux/libvulkan.so" "${CMAKE_BINARY_DIR}/libvulkan.so" COPYONLY)
elseif(MSVC)
configure_file("${PROJECT_SOURCE_DIR}/../../.github/patches/windows/vulkan-1.dll" "${CMAKE_BINARY_DIR}/vulkan-1.dll" COPYONLY)
configure_file("${PROJECT_SOURCE_DIR}/../deps/windows/vulkan-1.dll" "${CMAKE_BINARY_DIR}/vulkan-1.dll" COPYONLY)
endif()
File renamed without changes.
File renamed without changes.

0 comments on commit 3b5a248

Please sign in to comment.