Files
OrcaSlicer-KX/deps_src/qhull/src/qhull-app-shared.pri
SoftFever 4031b7db11 Refactor folder (#10475)
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.
2025-08-22 20:02:26 +08:00

28 lines
689 B
Plaintext

# -------------------------------------------------
# qhull-app-shared.pri -- Deprecated Qt include project for C qhull applications linked with libqhull (shared library)
# -------------------------------------------------
include(qhull-warn.pri)
DESTDIR = ../../bin
TEMPLATE = app
CONFIG += console warn_on
CONFIG -= qt
LIBS += -L../../lib
build_pass:CONFIG(debug, debug|release){
LIBS += -lqhull_d
OBJECTS_DIR = Debug
}else:build_pass:CONFIG(release, debug|release){
LIBS += -lqhull
OBJECTS_DIR = Release
}
win32-msvc* : QMAKE_LFLAGS += /INCREMENTAL:NO
win32-msvc* : DEFINES += qh_dllimport # libqhull/user.h
INCLUDEPATH += ../libqhull
CONFIG += qhull_warn_conversion