Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

Update Package.swift #4

Merged
merged 1 commit into from
Apr 20, 2021
Merged

Update Package.swift #4

merged 1 commit into from
Apr 20, 2021

Commits on Apr 18, 2021

  1. Update Package.swift

    Silence an annoying warning about pkg-config.  `pkg-config` is not portable, and system dependencies are just as unportable.  Windows requires manual dependency management and does not have a standard tool for locating system wide libraries.  Instead, the user is expected to provide proper flags.  This removes the pkg-config and brew based package dependency tracking for Windows.
    
    Instead, users should build using something along the lines of:
    ```
    swift build -Xcc -IS:\Library\libxml2-development\usr\include -Xcc -IS:\Library\libxml2-development\usr\include\libxml2 -Xlinker -LS:\Library\libxml2-development\usr\lib
    ```
    compnerd authored Apr 18, 2021
    Configuration menu
    Copy the full SHA
    3985ce8 View commit details
    Browse the repository at this point in the history