~ubuntu-branches/debian/stretch/openbabel/stretch

« back to all changes in this revision

Viewing changes to windows-vc2008/default_build.bat

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2013-05-22 19:08:27 UTC
  • mfrom: (1.1.11) (7.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20130522190827-72q0fnx5y2nm3bc0
Tags: 2.3.2+dfsg-1
* New upstream release.
* debian/control: Dropped DM-Upload-Allowed field.
  (Standards-Version): Bumped to 3.9.4.
* debian/copyright: Massive update.
* debian/upstream: Author name update.
* debian/get-orig-source.sh: Remove the windows-*/ directory too.
* debian/openbabel.install: Removed roundtrip manpage.
* debian/openbabel-gui.install: Fixed manpage name.
* debian/openbabel-gui.links: Removed unused file.
* debian/rules: Enable OpenMP. Disable tests on `nocheck'.
* debian/patches/gaussformat_nosym.patch: Dropped. Applied upstream.
* debian/patches/moldenformat_coordonly.patch: Ditto.
* debian/patches/obspectrophore_man.patch: Ditto.
* debian/patches/fix_ftbfs.patch: Added.
  - Fix several FTBFS issues in upstream build system.
* debian/patches/series: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@rem The cmake/bin directory should be in PATH
2
 
@rem The top level directory of Eigen should be in the the environment variable
3
 
@rem EIGEN2_INCLUDE_DIR. 
4
 
@rem If Eigen is not found then qeq.cpp and qtpie.cpp are not built.
5
 
@rem To build the GUI, the top level directory of wxWidgets should be in the
6
 
@rem environment variable WXWIN and -DBUILD_GUI=ON specified 
7
 
@if NOT EXIST build mkdir build
8
 
@cd build
9
 
cmake.exe -DCMAKE_INSTALL_PREFIX=..\install -G "Visual Studio 9 2008" -DLIBXML2_LIBRARIES="%CD%\..\libs\i386\libxml2.lib" -DMINIMAL_BUILD=OFF -DCAIRO_INCLUDE_DIRS="%CD%\..\include\cairo" -DCAIRO_LIBRARIES="%CD%\..\libs\i386\cairo.lib" -DLIBXML2_INCLUDE_DIR=. -DZLIB_LIBRARY="%CD%\..\libs\i386\zlib1.lib" -DZLIB_INCLUDE_DIR=. -DINCHI_LIBRARY="%CD%\..\libs\i386\libinchi.lib" -DINCHI_INCLUDE_DIR=. -DXDR_LIBRARY="%CD%\..\libs\i386\xdr.lib" -DEIGEN2_INCLUDE_DIR="%EIGEN2_INCLUDE_DIR%" -DRUN_SWIG=ON -DJAVA_BINDINGS=ON -DCSHARP_BINDINGS=ON -DCSHARP_EXECUTABLE=C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe -DENABLE_TESTS=OFF -DBUILD_GUI=ON -DwxWidgets_ROOT_DIR="%WXWIN%" -DwxWidgets_LIB_DIR="%WXWIN%/lib/vc_lib" -DwxWidgets_CONFIGURATION=msw %1 %2 %3 %4 %5 %6 %7 %8 ..\..
10
 
@cd ..