katabatic
This commit is contained in:
parent
867df820f5
commit
552e54731a
|
@ -36,7 +36,7 @@
|
||||||
components = [
|
components = [
|
||||||
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
||||||
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
||||||
"katana" "bora" "equinox" "knik"
|
"katana" "bora" "equinox" "knik" "katabatic"
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
|
@ -8,6 +8,7 @@ endif ( CHECK_DETERMINISM )
|
||||||
include_directories( ${KATABATIC_SOURCE_DIR}/src
|
include_directories( ${KATABATIC_SOURCE_DIR}/src
|
||||||
${CORIOLIS_INCLUDE_DIR}
|
${CORIOLIS_INCLUDE_DIR}
|
||||||
${HURRICANE_INCLUDE_DIR}
|
${HURRICANE_INCLUDE_DIR}
|
||||||
|
${KNIK_INCLUDE_DIR}
|
||||||
${CONFIGURATION_INCLUDE_DIR}
|
${CONFIGURATION_INCLUDE_DIR}
|
||||||
${Boost_INCLUDE_DIRS}
|
${Boost_INCLUDE_DIRS}
|
||||||
${QtX_INCLUDE_DIR}
|
${QtX_INCLUDE_DIR}
|
||||||
|
|
|
@ -18,7 +18,7 @@ IF(UNIX)
|
||||||
FIND_PATH(KNIK_INCLUDE_PATH NAMES knik/KnikEngine.h PATHS
|
FIND_PATH(KNIK_INCLUDE_PATH NAMES knik/KnikEngine.h PATHS
|
||||||
# Look in other places.
|
# Look in other places.
|
||||||
${CORIOLIS_DIR_SEARCH}
|
${CORIOLIS_DIR_SEARCH}
|
||||||
PATH_SUFFIXES include/coriolis
|
PATH_SUFFIXES include/coriolis2
|
||||||
# Help the user find it if we cannot.
|
# Help the user find it if we cannot.
|
||||||
DOC "The ${KNIK_INCLUDE_PATH_DESCRIPTION}"
|
DOC "The ${KNIK_INCLUDE_PATH_DESCRIPTION}"
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ version, meta }:
|
||||||
|
|
||||||
|
{ lib, stdenv, cmake, ninja, python2, boost
|
||||||
|
, coriolis-bootstrap, coriolis-vlsisapd, coriolis-hurricane
|
||||||
|
, coriolis-crlcore, coriolis-flute, coriolis-knik
|
||||||
|
, qt4 }:
|
||||||
|
|
||||||
|
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "coriolis-katabatic";
|
||||||
|
|
||||||
|
src = ../katabatic;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
python2 boostWithPython coriolis-bootstrap
|
||||||
|
coriolis-vlsisapd coriolis-hurricane coriolis-crlcore
|
||||||
|
coriolis-flute coriolis-knik qt4
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
|
|
||||||
|
inherit version meta;
|
||||||
|
}
|
Loading…
Reference in New Issue