mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
10 lines
280 B
Bash
10 lines
280 B
Bash
|
_addWebOSCMakeFlags() {
|
||
|
# Help find the webOS cmake module
|
||
|
cmakeFlagsArray+=(-DCMAKE_MODULE_PATH=@out@/lib/cmake)
|
||
|
|
||
|
# fix installation path (doesn't use CMAKE_INSTALL_PREFIX)
|
||
|
cmakeFlagsArray+=(-DWEBOS_INSTALL_ROOT=${!outputBin})
|
||
|
}
|
||
|
|
||
|
preConfigureHooks+=(_addWebOSCMakeFlags)
|