Skip to content

Commit bafe69d

Browse files
committed
Minor improvements
1 parent 381ec5e commit bafe69d

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [ubuntu-latest, macos-latest, macos-26, windows-latest]
17+
os: [ ubuntu-latest, macos-latest, macos-26, windows-latest ]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
os: [ubuntu-latest, macos-latest, macos-26, windows-latest]
32+
os: [ ubuntu-latest, macos-latest, macos-26, windows-latest ]
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v4
@@ -73,7 +73,7 @@ jobs:
7373
done
7474
return 1
7575
}
76-
76+
7777
echo "### c-tasks example ###"
7878
cd examples/c-tasks && ./build.sh
7979
bin=$(find_bin objectbox-examples-c-tasks)

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build:examples:
3737
- cd ../vectorsearch-cities && ./build.sh
3838
- printf "name berlin\nexit" | build/objectbox-examples-vectorsearch-cities
3939

40-
build:examples-ubuntu24.04:
40+
build:examples-ubuntu24:
4141
extends: build:examples
4242
image: objectboxio/cbuild-ubuntu24.04:2025-09-30
4343
before_script: []

src-test/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ set(PLAIN_C_TEST_SOURCES
99
../external/flatcc-src/builder.c
1010
../external/flatcc-src/emitter.c
1111
../external/flatcc-src/refmap.c
12-
)
12+
)
1313

1414
add_executable(objectbox-c-test ${PLAIN_C_TEST_SOURCES})
1515
target_link_libraries(objectbox-c-test objectbox)
1616

17-
IF (CMAKE_ANDROID)
17+
if (CMAKE_ANDROID)
1818
target_link_libraries(objectbox-c-test log)
19-
ENDIF ()
19+
endif ()
2020

2121
if (TARGET objectbox-static-distribution-lib)
2222
# Even if it doesn't do much, this is already useful e.g. to detect missing symbols during linking
2323
add_executable(objectbox-c-test-static-lib ${PLAIN_C_TEST_SOURCES})
24-
target_link_libraries(objectbox-c-test-static-lib objectbox-static-distribution-lib stdc++ pthread)
24+
target_link_libraries(objectbox-c-test-static-lib objectbox-static-distribution-lib stdc++ pthread m)
2525
IF (CMAKE_ANDROID)
2626
target_link_libraries(objectbox-c-test-static-lib log)
27-
ENDIF ()
28-
endif()
27+
endif ()
28+
endif ()

0 commit comments

Comments
 (0)