Remove useless data from the CRT private key.
[crypto_lab3.git] / src / lab3.qbs
index 2117c09..148f7b4 100644 (file)
@@ -4,20 +4,11 @@ Product {
    name: "lab3"
    type: "application"
 
-   files: ["main.cpp", "Rand.h", "Rand.cpp", "Rsa.h", "Rsa.cpp", "RsaCrt.h", "RsaCrt.cpp", "Utils.h", "Utils.cpp"]
+   files: ["main.cpp", "Rand.h", "Rand.cpp", "Rsa.h", "Rsa.cpp", "RsaStd.h", "RsaStd.cpp", "RsaCrt.h", "RsaCrt.cpp", "Utils.h", "Utils.cpp", "Tests.h", "Tests.cpp"]
 
    cpp.commonCompilerFlags: ["-std=c++11"]
    cpp.staticLibraries: ["gmp", "gmpxx"]
 
-   Properties {
-      condition: qbs.buildVariant == "release"
-
-      //cpp.commonCompilerFlags: outer.concat("")
-
-      // Override the default optimization (-02).
-      cpp.optimization: "none"
-      cpp.cxxFlags: "-O3"
-   }
    Properties {
       condition: qbs.buildVariant == "debug"
       cpp.debugInformation: true