Skip to content

Commit

Permalink
Increase version, fix cmake for win32, update changes
Browse files Browse the repository at this point in the history
  • Loading branch information
basiliscos committed Apr 23, 2024
1 parent 94f53ed commit c073213
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ find_package(uriparser REQUIRED)
find_package(tomlplusplus REQUIRED)
find_package(nlohmann_json REQUIRED)

set(SYNCSPIRIT_VERSION "v0.3.0")
set(SYNCSPIRIT_VERSION "v0.3.1")

configure_file(misc/syncspirit-config.h.in include/syncspirit-config.h @ONLY)
set(Protobuf_IMPORT_DIRS ${syncspirit_SOURCE_DIR}/src/protobuf)
Expand Down Expand Up @@ -204,7 +204,7 @@ target_link_libraries(syncspirit_lib
tomlplusplus::tomlplusplus
nlohmann_json::nlohmann_json
lz4::lz4
mdbx
$<IF:$<PLATFORM_ID:Windows>,mdbx,mdbx-static>
$<$<PLATFORM_ID:Windows>:iphlpapi>
$<$<PLATFORM_ID:Windows>:ws2_32>
)
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ after the core completion.

# changes

## 0.3.1 (23-Apr-2024)
- [feature] added `syncspirit` binary fow windows xp
- [build, docs] improved build documentation

## 0.3.0 (14-Apr-2024)
- [feature] implemented complete files syncrhonisation
- [feature] added local files watcher and updates streamer
Expand Down
2 changes: 1 addition & 1 deletion docs/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ boost/*:without_wave=True
```

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

0 comments on commit c073213

Please sign in to comment.