summaryrefslogtreecommitdiffstats
path: root/src/Python
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2017-08-23 14:58:11 +0100
committerEdoardo Pasca <edo.paskino@gmail.com>2017-10-11 15:48:33 +0100
commit70d03d2c7567fac409086f015ca9e2ac47b0fc20 (patch)
tree039fec6a52f673b4b63ee0b66e2238a884996aa5 /src/Python
parentc3b58791b906aa6a3b99f32fa5f69a09bb075527 (diff)
downloadregularization-70d03d2c7567fac409086f015ca9e2ac47b0fc20.tar.gz
regularization-70d03d2c7567fac409086f015ca9e2ac47b0fc20.tar.bz2
regularization-70d03d2c7567fac409086f015ca9e2ac47b0fc20.tar.xz
regularization-70d03d2c7567fac409086f015ca9e2ac47b0fc20.zip
changed the backward slash to forward
Diffstat (limited to 'src/Python')
-rw-r--r--src/Python/setup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Python/setup.py b/src/Python/setup.py
index 94467c4..154f979 100644
--- a/src/Python/setup.py
+++ b/src/Python/setup.py
@@ -49,12 +49,12 @@ setup(
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("ccpi.imaging.cpu_regularizers",
sources=["fista_module.cpp",
- "..\\..\\main_func\\regularizers_CPU\\FGP_TV_core.c",
- "..\\..\\main_func\\regularizers_CPU\\SplitBregman_TV_core.c",
- "..\\..\\main_func\\regularizers_CPU\\LLT_model_core.c",
- "..\\..\\main_func\\regularizers_CPU\\PatchBased_Regul_core.c",
- "..\\..\\main_func\\regularizers_CPU\\TGV_PD_core.c",
- "..\\..\\main_func\\regularizers_CPU\\utils.c"
+ "../../main_func/regularizers_CPU/FGP_TV_core.c",
+ "../../main_func/regularizers_CPU/SplitBregman_TV_core.c",
+ "../../main_func/regularizers_CPU/LLT_model_core.c",
+ "../../main_func/regularizers_CPU/PatchBased_Regul_core.c",
+ "../../main_func/regularizers_CPU/TGV_PD_core.c",
+ "../../main_func/regularizers_CPU/utils.c"
],
include_dirs=extra_include_dirs, library_dirs=extra_library_dirs, extra_compile_args=extra_compile_args, libraries=extra_libraries ),