Skip to content

Commit c073213

Browse files
committed
Increase version, fix cmake for win32, update changes
1 parent 94f53ed commit c073213

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ find_package(uriparser REQUIRED)
3232
find_package(tomlplusplus REQUIRED)
3333
find_package(nlohmann_json REQUIRED)
3434

35-
set(SYNCSPIRIT_VERSION "v0.3.0")
35+
set(SYNCSPIRIT_VERSION "v0.3.1")
3636

3737
configure_file(misc/syncspirit-config.h.in include/syncspirit-config.h @ONLY)
3838
set(Protobuf_IMPORT_DIRS ${syncspirit_SOURCE_DIR}/src/protobuf)
@@ -204,7 +204,7 @@ target_link_libraries(syncspirit_lib
204204
tomlplusplus::tomlplusplus
205205
nlohmann_json::nlohmann_json
206206
lz4::lz4
207-
mdbx
207+
$<IF:$<PLATFORM_ID:Windows>,mdbx,mdbx-static>
208208
$<$<PLATFORM_ID:Windows>:iphlpapi>
209209
$<$<PLATFORM_ID:Windows>:ws2_32>
210210
)

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ after the core completion.
117117

118118
# changes
119119

120+
## 0.3.1 (23-Apr-2024)
121+
- [feature] added `syncspirit` binary fow windows xp
122+
- [build, docs] improved build documentation
123+
120124
## 0.3.0 (14-Apr-2024)
121125
- [feature] implemented complete files syncrhonisation
122126
- [feature] added local files watcher and updates streamer

docs/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ boost/*:without_wave=True
277277
```
278278

279279
```
280-
conan install --build=missing -o '*:shared=False' -o shared=False --output-folder .
280+
conan install --build=missing -o '*:shared=False' -o shared=False --output-folder . \
281281
-s build_type=Release --profile:build=default --profile:host=old_linux ..
282282
source ./conanbuild.sh
283283
cmake .. -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=$PWD/conan_toolchain.cmake \

0 commit comments

Comments
 (0)