mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:20:31 +08:00
25f6132788
* [mujs] Fix CMake config, cleanup * Enable shared build on !windows * Install pkg-config file * Handle libm * Official usage: pkgconfig * Update versions
7 lines
197 B
Plaintext
7 lines
197 B
Plaintext
mujs can be imported via CMake FindPkgConfig module:
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(MUJS REQUIRED IMPORTED_TARGET mujs)
|
|
|
|
target_link_libraries(main PRIVATE PkgConfig::MUJS)
|