Codebase list ohcount / ab51af5 test / detect_files / qmake.pro
ab51af5

Tree @ab51af5 (Download .tar.gz)

qmake.pro @ab51af5raw · history · blame

CONFIG += qt debug
HEADERS += hello.h
SOURCES += hello.cpp
SOURCES += main.cpp
win32 {
	SOURCES += hellowin.cpp
}
unix {
	SOURCES += hellounix.cpp
}
!exists( main.cpp ) {
	error( "No main.cpp file found" )
}
win32:debug {
	CONFIG += console
}