Closed toge closed 3 years ago
In 2.9.3, cmake installer creates such directories. I think it is a CMakeLists.txt bug in 2.9.3.
include/ ├── daw │ ├── impl │ ├── iterator │ └── utf_range ├── include │ ├── daw │ │ └── json │ │ └── impl │ └── third_party │ └── dragonbox └── utf8
For example: In 2.9.2, cmake installer create such directories.
include/ ├── daw │ ├── impl │ ├── iterator │ ├── json │ │ └── impl │ └── utf_range ├── third_party │ └── dragonbox └── utf8
wget -nd https://github.com/beached/daw_json_link/archive/refs/tags/v2.9.3.zip unzip v2.9.3.zip cd daw_json_link-2.9.3/ cmake -B build -S . mkdir /tmp/dummy cmake --install build --prefix /tmp/dummy/ cd /tmp/dummy tree -d include/
Thanks, I made a change to how it works and forgot the / after the folder name. Fixed with https://github.com/beached/daw_json_link/pull/233
/
https://github.com/beached/daw_json_link/releases/tag/v2.9.4
Thank you for your quick response! I confirmed it.
In 2.9.3, cmake installer creates such directories. I think it is a CMakeLists.txt bug in 2.9.3.
For example: In 2.9.2, cmake installer create such directories.
reproduction methods