Remove useless data from the CRT private key.
[crypto_lab3.git] / src / lab3.qbs
1 import qbs 1.0
2
3 Product {
4    name: "lab3"
5    type: "application"
6
7    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"]
8
9    cpp.commonCompilerFlags: ["-std=c++11"]
10    cpp.staticLibraries: ["gmp", "gmpxx"]
11
12    Properties {
13       condition: qbs.buildVariant == "debug"
14       cpp.debugInformation: true
15    }
16
17    Depends { name: "cpp" }
18 }