mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 06:09:47 +02:00
Ensures that all files that Git considers to be text will have normalized (LF) line endings in the repository. When core.eol is set to native (which is the default), Git will convert the line endings of normalized files in your working directory back to your platform's native line ending. See also https://git-scm.com/docs/gitattributes
48 lines
971 B
Prolog
48 lines
971 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-09-02T12:50:47
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core gui
|
|
|
|
TARGET = portmidi
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib # replace this with DLL for dynamic link on Windows
|
|
|
|
INCLUDEPATH = pm_common/ porttime/
|
|
|
|
win32 {
|
|
INCLUDEPATH += pm_win/
|
|
LIBS += -lwinmm
|
|
SOURCES += pm_win/pmwinmm.c \
|
|
pm_win/pmwin.c
|
|
HEADERS += pm_win/pmwinmm.h
|
|
}
|
|
|
|
# this build hasn't been tested on Linux yet
|
|
unix {
|
|
DEFINES += PMALSA
|
|
INCLUDEPATH += pm_linux/
|
|
LIBS += -lasound
|
|
SOURCES += pm_linux/finddefault.c \
|
|
pm_linux/pmlinux.c \
|
|
pm_linux/pmlinuxalsa.c
|
|
HEADERS += pm_linux/pmlinux.h pm_linux/pmlinuxalsa.h
|
|
}
|
|
|
|
|
|
DEFINES -= UNICODE
|
|
|
|
SOURCES += \
|
|
pm_common/portmidi.c \
|
|
pm_common/pmutil.c \
|
|
porttime/porttime.c \
|
|
porttime/ptwinmm.c
|
|
|
|
HEADERS += \
|
|
pm_common/pmutil.h \
|
|
pm_common/pminternal.h \
|
|
pm_common/portmidi.h \
|
|
porttime/porttime.h
|