Skip to content

Commit

Permalink
Fixed vscp_aes references
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed May 13, 2024
1 parent 4a7f3d1 commit 71eea16
Show file tree
Hide file tree
Showing 32 changed files with 57 additions and 57 deletions.
4 changes: 2 additions & 2 deletions src/common/vscp-aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ NOTE: String length must be evenly divisible by 16byte (str_len % 16 == 0)
*/

#ifndef ___VSCP_AES_H
#define ___VSCP_AES_H
#ifndef ___vscp-aes_H
#define ___vscp-aes_H


/*****************************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/common/multicastsrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include <dllist.h>
#include <guid.h>
#include <mongoose.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscp_debug.h>


Expand Down
2 changes: 1 addition & 1 deletion src/vscp/common/udpsrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include <tcpipsrv.h>
#include <version.h>
#include <vscp.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/common/userlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

#include "userlist.h"
#include <vscp.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>

#include <nlohmann/json.hpp> // Needs C++11 -std=c++11
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/common/vscp-client-ws1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#ifndef WIN32
#include <unistd.h>
#endif
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>
// #include "civetweb.h"

Expand Down
2 changes: 1 addition & 1 deletion src/vscp/common/vscp-client-ws2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#ifndef WIN32
#include <unistd.h>
#endif
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>
// #include "civetweb.h"

Expand Down
4 changes: 2 additions & 2 deletions src/vscp/vscp-mkpasswd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ add_executable(vscp-mkpasswd
${PROJECT_SOURCE_DIR}/../../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../../third_party/fastpbkdf2/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../../third_party/fastpbkdf2/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../../third_party/nlohmann/include/nlohmann/json.hpp
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/vscp-mkpasswd/vscp-mkpasswd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <math.h>

#include <vscp.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <fastpbkdf2.h>
#include "vscp-mkpasswd.h"

Expand Down
6 changes: 3 additions & 3 deletions src/vscp/vscpcmd/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ VSCPCMD_OBJECTS = vscpcmd.o \
crc8.o \
guid.o \
sockettcp.o \
vscp_aes.o \
vscp-aes.o \
vscpmd5.o \
fastpbkdf2.o \
vscpbase64.o
Expand Down Expand Up @@ -108,8 +108,8 @@ guid.o: ../common/guid.cpp ../common/guid.h
sockettcp.o: ../../common/sockettcp.c ../../common/sockettcp.h
$(CC) $(CFLAGS) -c ../../common/sockettcp.c -o $@
vscp_aes.o: ../../common/vscp_aes.c ../../common/vscp_aes.h
$(CC) $(CFLAGS) -c ../../common/vscp_aes.c -o $@
vscp-aes.o: ../../common/vscp-aes.c ../../common/vscp-aes.h
$(CC) $(CFLAGS) -c ../../common/vscp-aes.c -o $@
crc.o: ../../common/crc.c ../../common/crc.h
$(CC) $(CFLAGS) -c ../../common/crc.c -o $@
Expand Down
4 changes: 2 additions & 2 deletions src/vscp/vscpcmd/vscpcmd.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
<ClInclude Include="..\..\common\sockettcp.h" />
<ClInclude Include="..\..\common\vscpbase64.h" />
<ClInclude Include="..\..\common\vscpmd5.h" />
<ClInclude Include="..\..\common\vscp_aes.h" />
<ClInclude Include="..\..\common\vscp-aes.h" />
<ClInclude Include="..\common\controlobject.h" />
<ClInclude Include="vscpcmd.h" />
</ItemGroup>
Expand All @@ -450,7 +450,7 @@
<ClCompile Include="..\..\common\sockettcp.c" />
<ClCompile Include="..\..\common\vscpbase64.c" />
<ClCompile Include="..\..\common\vscpmd5.c" />
<ClCompile Include="..\..\common\vscp_aes.c" />
<ClCompile Include="..\..\common\vscp-aes.c" />
<ClCompile Include="..\common\guid.cpp" />
<ClCompile Include="..\common\vscpremotetcpif.cpp" />
<ClCompile Include="vscpcmd.cpp" />
Expand Down
6 changes: 3 additions & 3 deletions src/vscp/vscphubd/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ VSCPD_OBJECTS = vscpd.o \
lua_all.o\
lua_vscp_wrkthread.o\
lua_vscp_func.o\
vscp_aes.o \
vscp-aes.o \
sqlite3.o \
sqlite3math.o \
fastpbkdf2.o \
Expand Down Expand Up @@ -186,8 +186,8 @@ vscpdatetime.o: ../../common/vscpdatetime.cpp ../../common/vscpdatetime.h
dllist.o: ../../../common/dllist.c ../../../common/dllist.h
$(CC) $(CFLAGS) -c ../../../common/dllist.c -o $@

vscp_aes.o: ../../../common/vscp_aes.c ../../../common/vscp_aes.h
$(CC) $(CFLAGS) -c ../../../common/vscp_aes.c -o $@
vscp-aes.o: ../../../common/vscp-aes.c ../../../common/vscp-aes.h
$(CC) $(CFLAGS) -c ../../../common/vscp-aes.c -o $@

crc.o: ../../../common/crc.c ../../../common/crc.h
$(CC) $(CFLAGS) -c ../../../common/crc.c -o $@
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/vscphubd/controlobject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
#include <expat.h>

#include <fastpbkdf2.h>
#include <vscp_aes.h>
#include <vscp-aes.h>

#include <actioncodes.h>
#include <automation.h>
Expand Down
2 changes: 1 addition & 1 deletion src/vscp/vscphubd/websocketsrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#include <remotevariablecodes.h>
#include <version.h>
#include <vscp.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscp_debug.h>
#include <vscphelper.h>
#include <websrv.h>
Expand Down
4 changes: 2 additions & 2 deletions tests/clientlist/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ add_executable(unittest
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/helperlib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
8 changes: 4 additions & 4 deletions tests/helperlib/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ UNITTEST_OBJECTS = unittest.o \
crc.o \
crc8.o \
randpassword.o \
vscp_aes.o \
vscp-aes.o \
fastpbkdf2.o \
vscpmd5.o \
vscpbase64.o \
Expand All @@ -99,7 +99,7 @@ CONNECT_TEST_OBJECTS = connect_test.o \
crc.o \
crc8.o \
randpassword.o \
vscp_aes.o \
vscp-aes.o \
fastpbkdf2.o \
vscpmd5.o \
vscpbase64.o \
Expand Down Expand Up @@ -137,8 +137,8 @@ register.o: ../../src/vscp/common/register.cpp ../../src/vscp/common/register.h
vscpdatetime.o: ../../src/vscp/common/vscpdatetime.cpp ../../src/vscp/common/vscpdatetime.h
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c ../../src/vscp/common/vscpdatetime.cpp -o $@

vscp_aes.o: ../../src/common/vscp_aes.c ../../src/common/vscp_aes.h
$(CC) $(CFLAGS) -c ../../src/common/vscp_aes.c -o $@
vscp-aes.o: ../../src/common/vscp-aes.c ../../src/common/vscp-aes.h
$(CC) $(CFLAGS) -c ../../src/common/vscp-aes.c -o $@

crc.o: ../../src/common/crc.c ../../src/common/crc.h
$(CC) $(CFLAGS) -c ../../src/common/crc.c -o $@
Expand Down
4 changes: 2 additions & 2 deletions tests/helperlib/Makefile.old
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ guid.o: ../../common/guid.cpp ../../common/guid.h
vscpdatetime.o: ../../common/vscpdatetime.cpp ../../common/vscpdatetime.h
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c ../../common/vscpdatetime.cpp -o $@

vscp_aes.o: ../../../common/vscp_aes.c ../../../common/vscp_aes.h
$(CC) $(CFLAGS) -c ../../../common/vscp_aes.c -o $@
vscp-aes.o: ../../../common/vscp-aes.c ../../../common/vscp-aes.h
$(CC) $(CFLAGS) -c ../../../common/vscp-aes.c -o $@

crc.o: ../../../common/crc.c ../../../common/crc.h
$(CC) $(CFLAGS) -c ../../../common/crc.c -o $@
Expand Down
4 changes: 2 additions & 2 deletions tests/mdfparser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/register/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/sockettcp.h
Expand Down
4 changes: 2 additions & 2 deletions tests/userlist/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ add_executable(unittest
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client-canal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client-mqtt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client-tcp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../third_party/fastpbkdf2/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../third_party/fastpbkdf2/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../third_party/nlohmann/include/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client-ws1/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/civetweb-1.13/include/civetweb.h
Expand Down
2 changes: 1 addition & 1 deletion tests/vscp-client-ws1/test-vscp-client-ws1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <pthread.h>
#include <semaphore.h>
#include <unistd.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>
#include "civetweb.h"
#include <nlohmann/json.hpp> // Needs C++11 -std=c++11
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client-ws2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/civetweb-1.13/include/civetweb.h
Expand Down
2 changes: 1 addition & 1 deletion tests/vscp-client-ws2/save_test-vscp-client-ws2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <pthread.h>
#include <semaphore.h>
#include <unistd.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>
#include "civetweb.h"
#include <nlohmann/json.hpp> // Needs C++11 -std=c++11
Expand Down
2 changes: 1 addition & 1 deletion tests/vscp-client-ws2/test-vscp-client-ws2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <pthread.h>
#include <semaphore.h>
#include <unistd.h>
#include <vscp_aes.h>
#include <vscp-aes.h>
#include <vscphelper.h>
#include "civetweb.h"
#include <nlohmann/json.hpp> // Needs C++11 -std=c++11
Expand Down
4 changes: 2 additions & 2 deletions tests/vscp-client/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscphelper/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ add_executable(test
${PROJECT_SOURCE_DIR}/../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../src/common/third_party/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscpremotetcpip/alltest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ add_executable(unittest
${PROJECT_SOURCE_DIR}/../../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../../third_party/fastpbkdf2/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../../third_party/fastpbkdf2/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../../third_party/nlohmann/include/nlohmann/json.hpp
Expand Down
4 changes: 2 additions & 2 deletions tests/vscpremotetcpip/longtest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ add_executable(unittest
${PROJECT_SOURCE_DIR}/../../../src/common/crc.c
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.h
${PROJECT_SOURCE_DIR}/../../../src/common/crc8.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp_aes.c
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.h
${PROJECT_SOURCE_DIR}/../../../src/common/vscp-aes.c
${PROJECT_SOURCE_DIR}/../../../src/common/fastpbkdf2.h
${PROJECT_SOURCE_DIR}/../../../src/common/fastpbkdf2.c
${PROJECT_SOURCE_DIR}/../../../src/common/third_party/nlohmann/json.hpp
Expand Down

0 comments on commit 71eea16

Please sign in to comment.