Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. The command ""\bin\rcc.exe" --list "FireflyUpdater.qrc" > "Debug\rcc_list.txt" 2> nul" exited with code 3.

The command ""\bin\rcc.exe" --list "FireflyUpdater.qrc" > "Debug\rcc_list.txt" 2> nul" exited with code 3.

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 1.2k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Mehodin
    wrote on last edited by Mehodin
    #1

    Hey, when i build my project i get the error above, full error:
    1>------ Build started: Project: FireflyUpdater, Configuration: Debug Win32 ------ 1>C:\Users\John_\AppData\Local\QtMsBuild\qtrcc.targets(74,5): error MSB3073: The command ""\bin\rcc.exe" --list "FireflyUpdater.qrc" > "Debug\rcc_list.txt" 2> nul" exited with code 3. 1>Done building project "FireflyUpdater.vcxproj" -- FAILED. ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    How would i fix this?
    I don't think code matters but here:

    #include <QApplication>
    #include <QDesktopWidget>
    
    FireflyUpdater::FireflyUpdater(QWidget *parent)
    	: QMainWindow(parent)
    {
    	ui.setupUi(this);
    	//resize(QApplication::desktop()->size() / 2);
    	show();
    }
    
    std::string FireflyUpdater::getDateTime() {
    	time_t rawtime;
    	struct tm * timeinfo;
    	char buffer[80];
    
    	time(&rawtime);
    	timeinfo = localtime(&rawtime);
    
    	strftime(buffer, sizeof(buffer), "[%d-%m-%Y %H:%M:%S] ", timeinfo);
    	std::string str(buffer);
    	return str;
    }
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      What is the structure of your project ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved