mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-19 00:42:18 +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.
31 lines
645 B
Prolog
31 lines
645 B
Prolog
# -------------------------------------------------
|
|
# testqset.pro -- Qt project file for testqset.exe
|
|
# -------------------------------------------------
|
|
|
|
include(../qhull-warn.pri)
|
|
|
|
TARGET = testqset
|
|
|
|
DESTDIR = ../../bin
|
|
TEMPLATE = app
|
|
CONFIG += console warn_on
|
|
CONFIG -= qt
|
|
CONFIG += qhull_warn_conversion
|
|
|
|
build_pass:CONFIG(debug, debug|release){
|
|
OBJECTS_DIR = Debug
|
|
}else:build_pass:CONFIG(release, debug|release){
|
|
OBJECTS_DIR = Release
|
|
}
|
|
|
|
INCLUDEPATH += ..
|
|
|
|
SOURCES += testqset.c
|
|
SOURCES += ../libqhull/qset.c
|
|
SOURCES += ../libqhull/mem.c
|
|
SOURCES += ../libqhull/usermem.c
|
|
|
|
HEADERS += ../libqhull/mem.h
|
|
HEADERS += ../libqhull/qset.h
|
|
|