Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / detect_files / qmake.pro
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

qmake.pro @run/8fccc97f-1091-4606-8a80-1b8fb386766a/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
}