Codebase list ohcount / fc0f4e2e-584f-4c68-9809-ad96640f54f0/main test / detect_files / qmake.pro
fc0f4e2e-584f-4c68-9809-ad96640f54f0/main

Tree @fc0f4e2e-584f-4c68-9809-ad96640f54f0/main (Download .tar.gz)

qmake.pro @fc0f4e2e-584f-4c68-9809-ad96640f54f0/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
}