view AES/unit_test.pro @ 4:e30f00f760d3 default tip

Cleanup OSTC label and removed url The computer type will now show OSTC 4/5 instead of only 4. The url has been removed because it is no longer maintained. The ui header have been deleted because they are generated files shich should not be under version controll. Delete locally if you want to force an update of the dialog layout.
author Ideenmodellierer
date Sun, 30 Nov 2025 18:37:32 +0100
parents 0b3630a29ad8
children
line wrap: on
line source

##############################################################################
# \file   AES/unit_test.pro
# \brief  Test AES block mode, and CFB mode.
# \author JD Gascuel
#
# $Id$
##############################################################################
# HISTORY:
# 2015/03/14 jDG : Creation.

TARGET = unit_test
CONFIG *= console

##############################################################################
# Here, we need dependencies from GoogleTest, and another project...
GTEST=D:/Dev/Dependencies/gtest-1.6.0

# Visual Studio 2012 : the number of variadic template parameters defaults to 5,
# force to 10
*msvc2012 : DEFINES *= _VARIADIC_MAX=10

INCLUDEPATH *= $${GTEST}/include $${GTEST}/gtest-1.6.0
HEADERS *= \
    $${GTEST}/include/gtest/gtest.h
SOURCES *= \
    $${GTEST}/gtest-1.6.0/src/gtest_main.cc \
    $${GTEST}/gtest-1.6.0/src/gtest-all.cc

##############################################################################
# Then we have our proper stuff:
HEADERS *= \
    rijndael.h

SOURCES *= \
    rijndael.cpp  \
    unit_test.cpp