"...ssh:/git@developer.sourcefind.cn:2222/tsoc/openmm.git" did not exist on "162f5cc7848d67eb14d5676a437741b72cfe064f"
Commit 4b431ec2 authored by peastman's avatar peastman
Browse files

Merge pull request #1172 from rmcgibbo/try-build-without-jom

Replace JOM with NMake in Appveyor build
parents 07afe544 10adfad8
...@@ -20,13 +20,13 @@ install: ...@@ -20,13 +20,13 @@ install:
- "set PATH=C:\\fftw;%PATH%" - "set PATH=C:\\fftw;%PATH%"
# Download and install some OpenMM build dependencies (doxygen, swig) # Download and install some OpenMM build dependencies (doxygen, swig)
- choco install -y doxygen.portable swig jom - choco install -y doxygen.portable swig
# Set CMake options # Set CMake options
- ps: $env:CMAKE_FLAGS='-DOPENMM_BUILD_PME_PLUGIN=ON -DFFTW_LIBRARY=C:/fftw/libfftw3f-3.lib -DFFTW_INCLUDES=C:/fftw -DCMAKE_BUILD_TYPE=Release -DOPENMM_BUILD_EXAMPLES=OFF -DCMAKE_CXX_FLAGS_RELEASE="/MD /Od /Ob0 /D NDEBUG"' - ps: $env:CMAKE_FLAGS='-DOPENMM_BUILD_PME_PLUGIN=ON -DFFTW_LIBRARY=C:/fftw/libfftw3f-3.lib -DFFTW_INCLUDES=C:/fftw -DCMAKE_BUILD_TYPE=Release -DOPENMM_BUILD_EXAMPLES=OFF -DCMAKE_CXX_FLAGS_RELEASE="/MD /Od /Ob0 /D NDEBUG"'
- mkdir build - mkdir build
- cd build - cd build
- cmake -G "NMake Makefiles JOM" %CMAKE_FLAGS% -LA .. - cmake -G "NMake Makefiles" %CMAKE_FLAGS% -LA ..
# Run the build # Run the build
- cmake --build . --target install - cmake --build . --target install
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment