Skip to content

Commit c910980

Browse files
author
Teseo Schneider
committed
multi3d compilation on windows?
1 parent 3b0477b commit c910980

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ install:
3030
build:
3131
parallel: true
3232
build_script:
33+
- "MSBuild /help"
3334
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
3435
- cd c:\projects\polyfempy
3536
- "python --version"
36-
- python -m pip install . --no-deps -vv
37+
- python setup.py install
3738

3839
test_script:
3940
- cd c:\projects\polyfempy

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def build_extension(self, ext):
6060
cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(cfg.upper(), extdir)]
6161
if sys.maxsize > 2**32:
6262
cmake_args += ['-A', 'x64']
63-
build_args += ['--', '/m', '/MP']
63+
build_args += ['--', '/m']
6464
else:
6565
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
6666
build_args += ['--', '-j2']

0 commit comments

Comments
 (0)