Releases: bugdea1er/tmp
Releases · bugdea1er/tmp
v0.3
Added FindFilesystem.cmake module to configure the required filesystem library if it is not available by default (#17)
When using this as a submodule, you can now use the new target std::filesystem to link it to your targets:
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/vendor/tmp/cmake/")
find_package(Filesystem REQUIRED)
...
add_executable(my-program main.cpp)
target_link_libraries(my-program PRIVATE std::filesystem)Full Changelog: v0.2.2...v0.3
v0.2.2
Fixed an issue where moving between devices would behave differently than on the same device (#16):
- If moving between devices, fail if source is the file and target is a directory
- Remove the target recursively before copying over it
Full Changelog: v0.2.1...v0.2.2