diff --git a/requirements/conda.txt b/requirements/conda.txt index f4e764d..dbaae37 100644 --- a/requirements/conda.txt +++ b/requirements/conda.txt @@ -6,3 +6,4 @@ diffpy.structure gsl # periodictable # pyobjcryst (up to py3.11 for mac) +# dlfcn-win32 (for windows) diff --git a/setup.py b/setup.py index 6c322f3..f5b929f 100644 --- a/setup.py +++ b/setup.py @@ -48,13 +48,21 @@ def get_boost_config(): return {"include_dirs": [str(inc)], "library_dirs": [str(lib)]} +if os.name == "nt": + compile_args = ["/std:c++14"] + macros = [("_USE_MATH_DEFINES", None)] +else: + compile_args = ["-std=c++11"] + macros = [] + boost_cfg = get_boost_config() ext_kws = { "libraries": ["diffpy"] + get_boost_libraries(), - "extra_compile_args": ["-std=c++11"], + "extra_compile_args": compile_args, "extra_link_args": [], "include_dirs": [numpy.get_include()] + boost_cfg["include_dirs"], "library_dirs": boost_cfg["library_dirs"], + "define_macros": macros, }