Qt5 시작하기
2021. 2. 11. 16:38ㆍQT 프로그래밍
(1) File | New File or Project | Application | Qt Widgets Application 선택
(2) cpp 파일명에 대문자를 사용할 수 있도록 Tools | Options | C++ | File Naming 에서 Lower case file names 를 체크 해제한다.
(3) 만들고자하는 프로젝트의 이름과 저장 위치를 지정한다.
(4) MainWindow.h / MainWindow.cpp contain the default GUI generated by wizard
(5) .pro file is Qt's configuration project file. (즉 환경 설정을 할 수 있는 파일이다.)
'QT 프로그래밍' 카테고리의 다른 글
윈도우에 설치 (0) | 2021.08.29 |
---|---|
Qt5 UI 폰트 크기 키우기 (0) | 2021.08.29 |
Compiling your first Qt Program in Ubuntu (0) | 2021.01.29 |