Skip to content

Commit

Permalink
[CORRECTIVE] Fix Abs Def and Bus Def test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
epekkar committed Nov 30, 2023
1 parent 17fb5ae commit e2fbe15
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Kactus2_Solution.pro
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ SVDGenerator.depends = IPXACTmodels KactusAPI
RenodeGenerator.file = Plugins/RenodeGenerator/RenodeGeneratorPlugin.pro
RenodeGenerator.depends = IPXACTmodels KactusAPI

test_all.subdir = tests
test_all.depends = IPXACTmodels
test_all.file = tests/test_all.pro
test_all.depends = IPXACTmodels KactusAPI

Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@ CONFIG += c++11 testcase console

linux-g++ | linux-g++-64 | linux-g++-32 {
LIBS += -L../../../executable \
-lIPXACTmodels
-lIPXACTmodels -lKactusAPI

}
win64 | win32 {
LIBS += -L$$PWD/../../../executable/ \
-lIPXACTmodelsd
LIBS += -L$$PWD/../../../executable/ \
-lKactusAPId
-lIPXACTmodelsd -lKactusAPId
}

DESTDIR = ./release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ CONFIG += c++11 testcase console
linux-g++ | linux-g++-64 | linux-g++-32 {
LIBS += -L../../../executable \
-lIPXACTmodels

}
win64 | win32 {
LIBS += -L../../../executable/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@
# This file is generated by the Qt Visual Studio Tools.
# ------------------------------------------------------

HEADERS += ../../../KactusAPI/include/SystemVerilogExpressionParser.h
SOURCES += ../../../KactusAPI/expressions/SystemVerilogExpressionParser.cpp \
./tst_BusDefinitionValidator.cpp
SOURCES += ./tst_BusDefinitionValidator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ CONFIG += c++11 testcase console

linux-g++ | linux-g++-64 | linux-g++-32 {
LIBS += -L../../../executable \
-lIPXACTmodelsd
LIBS += -L../../../executable \
-lKactusAPId
-lIPXACTmodels \
-lKactusAPI

}
win64 | win32 {
LIBS += -L../../../executable/ \
-lIPXACTmodelsd
LIBS += -L../../../executable/ \
-lIPXACTmodelsd \
-lKactusAPId
}

Expand Down

0 comments on commit e2fbe15

Please sign in to comment.