diff options
author | meta <s@w23.at> | 2011-01-24 23:21:36 (GMT) |
---|---|---|
committer | meta <s@w23.at> | 2011-01-24 23:21:36 (GMT) |
commit | 9f1c837e1566fc23c76e4bb07cf47f4b0048f94f (patch) | |
tree | ebe0d7f319694db1d03e985b125675a13491e0e3 /cgal.pri | |
parent | 4ac3af2f92843401f3f2204efd72d0596516f538 (diff) |
update build files
Diffstat (limited to 'cgal.pri')
-rw-r--r-- | cgal.pri | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -7,16 +7,20 @@ cgal { CGAL_DIR = $$(CGALDIR) !isEmpty(CGAL_DIR) { INCLUDEPATH += $$CGAL_DIR/include - LIBS += -L$$CGAL_DIR/lib + win32 { + LIBS += -L$$CGAL_DIR/build/lib -L$$(MPFRDIR)/build.vc10/lib/Win32/Release -L$$(MPIRDIR) + } else { + LIBS += -L$$CGAL_DIR/lib + } message("CGAL location: $$CGAL_DIR") } } - LIBS += -lCGAL -lmpfr -lboost_thread + LIBS += -lmpfr win32 { - LIBS += -lmpir + LIBS += -lmpir -lCGAL-vc100-mt } else { - LIBS += -lgmp + LIBS += -lgmp -lCGAL } QMAKE_CXXFLAGS += -frounding-math } |