Codebase list ohcount / dfcc369c-a8fa-4697-8331-c0472835aae2/main test / detect_files / qmake.pro
dfcc369c-a8fa-4697-8331-c0472835aae2/main

Tree @dfcc369c-a8fa-4697-8331-c0472835aae2/main (Download .tar.gz)

qmake.pro @dfcc369c-a8fa-4697-8331-c0472835aae2/mainraw · 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
}