Skip to content

Commit

Permalink
Bump version to 2.1.0-dev2
Browse files Browse the repository at this point in the history
fix cmake for test project

gcc warning
  • Loading branch information
rrrlasse committed Sep 23, 2024
1 parent 6c3d205 commit 8ce8b53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/exdupe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define VER_MAJOR 2
#define VER_MINOR 1
#define VER_REVISION 0
#define VER_DEV 1
#define VER_DEV 2

#define Q(x) #x
#define QUOTE(x) Q(x)
Expand Down Expand Up @@ -2139,6 +2139,7 @@ uint64_t read_header(FILE *file, STRING filename, status_t action, uint64_t* arc
char minor = io.read_ui<uint8_t>(file);
char revision = io.read_ui<uint8_t>(file);
char dev = io.read_ui<uint8_t>(file);
(void)dev;

uint64_t id = io.read_ui<uint64_t>(file);
if(archive_id) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project (test)

add_executable(test systest.cpp test.cpp ../utilities.cpp ../ui.cpp)
add_executable(test systest.cpp test.cpp ../utilities.cpp ../ui.cpp ../bytebuffer.cpp)
if (MSVC)
target_link_libraries(test PRIVATE shlwapi.lib)
endif(MSVC)

0 comments on commit 8ce8b53

Please sign in to comment.