mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-22 06:22:58 +02:00
Introduce end-of-line normalization
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
This commit is contained in:
@@ -1,47 +1,47 @@
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# 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
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# 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
|
||||
|
Reference in New Issue
Block a user