Hi, all.

im rather new to macos and something going wrong with my settings:

on windows this works fine:

Qt Code:
  1. Release:DESTDIR = release
  2. Release:OBJECTS_DIR = release/.obj
  3. Release:MOC_DIR = release/.moc
  4. Release:RCC_DIR = release/.rcc
  5. Release:UI_DIR = release/.ui
  6.  
  7. Debug:DESTDIR = debug
  8. Debug:OBJECTS_DIR = debug/.obj
  9. Debug:MOC_DIR = debug/.moc
  10. Debug:RCC_DIR = debug/.rcc
  11. Debug:UI_DIR = debug/.ui
To copy to clipboard, switch view to plain text mode 

but under mac it do not do anything and put all near .pro file and i tried this:

Qt Code:
  1. Release:DESTDIR = ./release
  2. Release:OBJECTS_DIR = ./release/.obj
  3. Release:MOC_DIR = ./release/.moc
  4. Release:RCC_DIR = ./release/.rcc
  5. Release:UI_DIR = ./release/.ui
  6.  
  7. Debug:DESTDIR = ./debug
  8. Debug:OBJECTS_DIR = ./debug/.obj
  9. Debug:MOC_DIR = ./debug/.moc
  10. Debug:RCC_DIR = ./debug/.rcc
  11. Debug:UI_DIR = ./debug/.ui
To copy to clipboard, switch view to plain text mode 

also i tried to delete .user file to clear all settings but nothing changed

help me please to solve it