katabatic
This commit is contained in:
parent
867df820f5
commit
552e54731a
|
@ -36,7 +36,7 @@
|
|||
components = [
|
||||
"vlsisapd" "lefdef" "bootstrap" "hurricane" "crlcore"
|
||||
"cumulus" "flute" "etesian" "anabatic" "coloquinte"
|
||||
"katana" "bora" "equinox" "knik"
|
||||
"katana" "bora" "equinox" "knik" "katabatic"
|
||||
];
|
||||
|
||||
in
|
||||
|
|
|
@ -8,6 +8,7 @@ endif ( CHECK_DETERMINISM )
|
|||
include_directories( ${KATABATIC_SOURCE_DIR}/src
|
||||
${CORIOLIS_INCLUDE_DIR}
|
||||
${HURRICANE_INCLUDE_DIR}
|
||||
${KNIK_INCLUDE_DIR}
|
||||
${CONFIGURATION_INCLUDE_DIR}
|
||||
${Boost_INCLUDE_DIRS}
|
||||
${QtX_INCLUDE_DIR}
|
||||
|
|
|
@ -18,7 +18,7 @@ IF(UNIX)
|
|||
FIND_PATH(KNIK_INCLUDE_PATH NAMES knik/KnikEngine.h PATHS
|
||||
# Look in other places.
|
||||
${CORIOLIS_DIR_SEARCH}
|
||||
PATH_SUFFIXES include/coriolis
|
||||
PATH_SUFFIXES include/coriolis2
|
||||
# Help the user find it if we cannot.
|
||||
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