I have coding in IDE: Qt Creator 5.6 (Open source).
In my program, I have to read a .txt
file due to run. This .txt
file is located in my Build
folder. The .txt
path is: "./config/values/Login.txt".
When I run in Debug
mode everything is fine. However, when I change to Release
mode, my program compiles, run, and give me an error
for not finding Login.txt
.
Why, when building
is done in release mode, my release build
is empty?
Thanks in advance!