mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01: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)
|