Rename 'Profile' target in visual studio to 'Development'

* When I went to explain to someone why the target was named Profile and
  not Debug as you might expect, I realised the reasons were entirely
  opaque and historical. So instead, rename it to Development since that
  is really what it's for - any profiling would be done in Release mode.
This commit is contained in:
baldurk
2016-02-28 11:33:23 +01:00
parent a347b54be4
commit 0a42d3e4d7
20 changed files with 218 additions and 218 deletions
+2 -2
View File
@@ -32,11 +32,11 @@ INCLUDEPATH += $$_PRO_FILE_PWD_/3rdparty/flowlayout
win32 {
!contains(QMAKE_TARGET.arch, x86_64) {
Debug:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Profile
Debug:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Development
Release:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Release
} else {
Debug:DESTDIR = $$_PRO_FILE_PWD_/../x64/Profile
Debug:DESTDIR = $$_PRO_FILE_PWD_/../x64/Development
Release:DESTDIR = $$_PRO_FILE_PWD_/../x64/Release
}