Skip to content

Commit

Permalink
pull latest spdlog
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Aug 15, 2016
1 parent cd1c0af commit 7df765c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,10 @@ message("Build system will fetch SPDLOG")
message("==================================================================")
ExternalProject_Add(libspdlog
DOWNLOAD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external
DOWNLOAD_COMMAND curl -k -L https://github.com/COMBINE-lab/spdlog/archive/v1.9.tar.gz -o spdlog-v1.9.tar.gz &&
tar -xzf spdlog-v1.9.tar.gz &&
DOWNLOAD_COMMAND curl -k -L https://github.com/COMBINE-lab/spdlog/archive/v1.0.1.tar.gz -o spdlog-v1.0.1.tar.gz &&
tar -xzf spdlog-v1.0.1.tar.gz &&
rm -fr spdlog &&
mv -f spdlog-1.9 spdlog
mv -f spdlog-1.0.1 spdlog
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/spdlog
INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/install
CONFIGURE_COMMAND ""
Expand Down

2 comments on commit 7df765c

@mdshw5
Copy link
Contributor

@mdshw5 mdshw5 commented on 7df765c Aug 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome. Thanks for this release!

@rob-p
Copy link
Collaborator Author

@rob-p rob-p commented on 7df765c Aug 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're very welcome :)!

Please sign in to comment.