Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---

## [Unreleased]
## [v1.47.1]

### CLI

**Fix header-only dependency handling in `vix run`**

- Fixed incorrect linking of header-only dependencies in auto-generated CMake

The CLI no longer attempts to link all inferred dependency aliases blindly.

- Detect compiled dependencies using `CMakeLists.txt`

Only dependencies that define build targets are treated as compiled libraries.

- Link only valid CMake targets

Uses `if(TARGET ...)` to ensure safe and correct linking during build.

- Avoid linking header-only libraries

Header-only packages without CMake targets are no longer passed to
`target_link_libraries`, preventing build errors.

- Fixed runtime error
```cmake
target_link_libraries(... gk::pdf) target not found
```
This restores full support for header-only packages while maintaining
correct behavior for compiled dependencies.


## [v1.47.0]

### CLI
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h1>Vix.cpp</h1>

<p>
<a href="https://x.com/vixcpp">
<a href="https://x.com/vix_cpp">
<img src="https://img.shields.io/badge/X-Follow-black?logo=x" alt="X" />
</a>
<a href="https://www.youtube.com/@vixcpp">
Expand Down
2 changes: 1 addition & 1 deletion modules/cli
Loading