mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 08:45:36 +08:00
20 lines
327 B
Prolog
20 lines
327 B
Prolog
# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
load(config_test_pre)
|
|
|
|
CONFIG -= qt
|
|
CONFIG += console
|
|
|
|
SOURCES = glu.cpp
|
|
|
|
win32 {
|
|
DEFINES += Q_OS_WIN
|
|
LIBS *= -lglu32
|
|
}
|
|
linux: LIBS *= -lGLU
|
|
macx {
|
|
DEFINES += Q_OS_MAC
|
|
LIBS += -framework OpenGL
|
|
}
|