mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-25 11:52:05 +00:00
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
25 lines
599 B
Plaintext
25 lines
599 B
Plaintext
# -------------------------------------------------
|
|
# qhull-app-c.pri -- Qt include project for C qhull applications linked to libqhull
|
|
# -------------------------------------------------
|
|
|
|
include(qhull-warn.pri)
|
|
|
|
DESTDIR = ../../bin
|
|
TEMPLATE = app
|
|
CONFIG += console warn_on
|
|
CONFIG -= qt
|
|
|
|
LIBS += -L../../lib
|
|
build_pass:CONFIG(debug, debug|release){
|
|
LIBS += -lqhullstatic_d
|
|
OBJECTS_DIR = Debug
|
|
}else:build_pass:CONFIG(release, debug|release){
|
|
LIBS += -lqhullstatic
|
|
OBJECTS_DIR = Release
|
|
}
|
|
win32-msvc* : QMAKE_LFLAGS += /INCREMENTAL:NO
|
|
|
|
INCLUDEPATH += ..
|
|
CONFIG += qhull_warn_conversion
|
|
|