dolphinEmuMaster: convert cmakeFlags to list

This commit is contained in:
Luke Adams 2017-07-20 19:24:20 -05:00 committed by Cray Elliott
parent a5d44f6631
commit 1e5973850e

View File

@ -12,12 +12,12 @@ stdenv.mkDerivation rec {
sha256 = "0pr5inkd7swc6s7im7axhvmkdbqidhrha2wpflnr25aiwq0dzm10"; sha256 = "0pr5inkd7swc6s7im7axhvmkdbqidhrha2wpflnr25aiwq0dzm10";
}; };
cmakeFlags = '' cmakeFlags = [
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include"
-DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0 "-DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0"
-DENABLE_LTO=True "-DENABLE_LTO=True"
''; ];
enableParallelBuilding = true; enableParallelBuilding = true;