Merge pull request #66 from ModOrganizer2/revert-54-master

Revert "Moving things around"
This commit is contained in:
isanae
2020-11-27 07:47:34 -05:00
committed by GitHub
5 changed files with 8 additions and 8 deletions
-1
View File
@@ -2,6 +2,5 @@
/vs/obj
/vs/.vs
/vs/*.user
/.vs
/mob.exe
/mob.log
+2 -2
View File
@@ -1187,7 +1187,7 @@ void init_options(
make_canonical_path(
"install_pythoncore",
paths::install_dlls(), "pythoncore");
paths::install_bin(), "pythoncore");
make_canonical_path(
"install_stylesheets",
@@ -1195,7 +1195,7 @@ void init_options(
make_canonical_path(
"install_translations",
paths::install_bin(), "resources/translations");
paths::install_bin(), "translations");
conf::set_global("tools", "iscc", path_to_utf8(find_iscc()));
}
+2 -2
View File
@@ -124,7 +124,7 @@ void boost::build_and_install_prebuilt()
{
op::copy_file_to_dir_if_better(cx(),
lib_path(arch::x64) / python_dll(),
paths::install_dlls());
paths::install_bin());
});
}
@@ -193,7 +193,7 @@ void boost::build_and_install_from_source()
{
op::copy_file_to_dir_if_better(cx(),
lib_path(arch::x64) / python_dll(),
paths::install_dlls());
paths::install_bin());
});
}
+1
View File
@@ -187,6 +187,7 @@ void openssl::install_engines()
void openssl::copy_files()
{
copy_dlls_to(paths::install_bin());
copy_dlls_to(paths::install_dlls());
copy_pdbs_to(paths::install_pdbs());
}
+3 -3
View File
@@ -209,12 +209,12 @@ void python::copy_files()
op::copy_glob_to_dir_if_better(cx(),
build_path() / "libffi*.dll",
paths::install_dlls(),
paths::install_bin(),
op::copy_files);
op::copy_file_to_dir_if_better(cx(),
build_path() / ("python" + version_for_dll() + ".dll"),
paths::install_dlls());
paths::install_bin());
op::copy_file_to_dir_if_better(cx(),
build_path() / ("python" + version_for_dll() + ".pdb"),
@@ -227,7 +227,7 @@ void python::copy_files()
op::copy_file_to_file_if_better(cx(),
build_path() / "pythoncore" / ("python" + version_for_dll() + ".zip"),
paths::install_dlls() / "pythoncore.zip",
paths::install_bin() / "pythoncore.zip",
op::copy_files);
}