Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Guekka committed Jun 18, 2023
1 parent 01fbc2d commit 092281f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"VCPKG_MANIFEST_FEATURES": {
"type": "STRING",
"value": "compression;dds;tests;xmem"
"value": "compression;tests;xmem"
},
"VCPKG_TARGET_TRIPLET": {
"type": "STRING",
Expand Down
2 changes: 1 addition & 1 deletion cmake/config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ include(CMakeFindDependencyMacro)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")

find_dependency(directxtex)
find_dependency(binary_io CONFIG)
find_dependency(directxtex)
find_dependency(LZ4 MODULE)
find_dependency(mmio CONFIG)
find_dependency(ZLIB MODULE)
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ target_include_directories(
list(APPEND CMAKE_MODULE_PATH "${ROOT_DIR}/cmake")

find_package(binary_io REQUIRED CONFIG)
find_package(directxtex REQUIRED CONFIG)
find_package(LZ4 MODULE REQUIRED)
find_package(mmio REQUIRED CONFIG)
find_package(ZLIB MODULE REQUIRED)
find_package(directxtex REQUIRED CONFIG)

target_link_libraries(
"${PROJECT_NAME}"
Expand Down

0 comments on commit 092281f

Please sign in to comment.