简体   繁体   中英

Nuget package from CMake

I am generating an C# WPF project using CMake. I followed this CMakeLists.txt example from Github.

My question is: How can add a Nuget package to this project using CMake?

CMake 3.15 and above supports referencing Nuget packages with VS_PACKAGE_REFERENCES . To add a Nuget package reference to a CMake target, use the package name and package version separated by an underscore _ . Here is an example for BouncyCastle version 1.8.5:

set_property(TARGET MyApplication
    PROPERTY VS_PACKAGE_REFERENCES "BouncyCastle_1.8.5"
)

The documentation shows how you can add multiple Nuget packages by semicolon-delimiting ; the packages.

For older CMake versions, you could try the proposed work-around suggested here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM