Skip to content

Commit

Permalink
format CMake files
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmithTT committed Nov 14, 2024
1 parent e9866e6 commit 8400e14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
8 changes: 2 additions & 6 deletions cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,7 @@ function(fetch_dependencies)
####################################################################################################################
# spdlog
####################################################################################################################
CPMAddPackage(
NAME spdlog
GITHUB_REPOSITORY gabime/spdlog
GIT_TAG v1.14.1
VERSION v1.14.1
)

CPMAddPackage(NAME spdlog GITHUB_REPOSITORY gabime/spdlog GIT_TAG v1.14.1 VERSION v1.14.1)
endfunction()
fetch_dependencies()
11 changes: 7 additions & 4 deletions tests/misc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
set(MISC_TESTS_SRCS
test_logger.cpp
)
set(MISC_TESTS_SRCS test_logger.cpp)

add_executable(misc_tests ${MISC_TESTS_SRCS})
target_link_libraries(misc_tests PRIVATE test_common spdlog::spdlog_header_only)
target_link_libraries(
misc_tests
PRIVATE
test_common
spdlog::spdlog_header_only
)
set_target_properties(
misc_tests
PROPERTIES
Expand Down

0 comments on commit 8400e14

Please sign in to comment.