diff options
| author | Rémy Tassoux <contact@rt2.fr> | 2020-08-24 20:20:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-24 11:20:02 -0700 |
| commit | 15e886daeb067f775800b0447e6bfe172e779175 (patch) | |
| tree | ccefd7d573b10b548d04e3d3257b8fa86dfe749d | |
| parent | 9816985c3db6656e9537173c3f886da440243e9c (diff) | |
| download | vcpkg-15e886daeb067f775800b0447e6bfe172e779175.tar.gz vcpkg-15e886daeb067f775800b0447e6bfe172e779175.zip | |
[josuttis-jthread] Fix include path (#13040)
| -rw-r--r-- | ports/josuttis-jthread/CONTROL | 1 | ||||
| -rw-r--r-- | ports/josuttis-jthread/portfile.cmake | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/josuttis-jthread/CONTROL b/ports/josuttis-jthread/CONTROL index 760fb6eb7..8a0fc3c58 100644 --- a/ports/josuttis-jthread/CONTROL +++ b/ports/josuttis-jthread/CONTROL @@ -1,4 +1,5 @@ Source: josuttis-jthread Version: 2020-07-21 +Port-Version: 1 Homepage: https://github.com/josuttis/jthread Description: C++ class for a joining and cooperative interruptible thread (std::jthread) with stop_token helper diff --git a/ports/josuttis-jthread/portfile.cmake b/ports/josuttis-jthread/portfile.cmake index e01c16585..9563442b1 100644 --- a/ports/josuttis-jthread/portfile.cmake +++ b/ports/josuttis-jthread/portfile.cmake @@ -10,6 +10,6 @@ vcpkg_from_github( file(INSTALL ${SOURCE_PATH}/source/jthread.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include) file(INSTALL ${SOURCE_PATH}/source/stop_token.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include) -file(INSTALL ${SOURCE_PATH}/source/condition_variable_any2.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include}) +file(INSTALL ${SOURCE_PATH}/source/condition_variable_any2.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include) file(INSTALL ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) |
