comparison AES/unit_test.pro @ 1:0b3630a29ad8

Initial version based on previous repository. Project was ported to QT6 and in now cmake based.
author Ideenmodellierer <tiefenrauscher@web.de>
date Thu, 27 Nov 2025 18:40:28 +0100
parents
children
comparison
equal deleted inserted replaced
0:76ccd6ce50c0 1:0b3630a29ad8
1 ##############################################################################
2 # \file AES/unit_test.pro
3 # \brief Test AES block mode, and CFB mode.
4 # \author JD Gascuel
5 #
6 # $Id$
7 ##############################################################################
8 # HISTORY:
9 # 2015/03/14 jDG : Creation.
10
11 TARGET = unit_test
12 CONFIG *= console
13
14 ##############################################################################
15 # Here, we need dependencies from GoogleTest, and another project...
16 GTEST=D:/Dev/Dependencies/gtest-1.6.0
17
18 # Visual Studio 2012 : the number of variadic template parameters defaults to 5,
19 # force to 10
20 *msvc2012 : DEFINES *= _VARIADIC_MAX=10
21
22 INCLUDEPATH *= $${GTEST}/include $${GTEST}/gtest-1.6.0
23 HEADERS *= \
24 $${GTEST}/include/gtest/gtest.h
25 SOURCES *= \
26 $${GTEST}/gtest-1.6.0/src/gtest_main.cc \
27 $${GTEST}/gtest-1.6.0/src/gtest-all.cc
28
29 ##############################################################################
30 # Then we have our proper stuff:
31 HEADERS *= \
32 rijndael.h
33
34 SOURCES *= \
35 rijndael.cpp \
36 unit_test.cpp