Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
f7a852b8
Commit
f7a852b8
authored
Nov 25, 2021
by
Thibaut ROMAIN
Browse files
BUG: build .lib instead of dll on windows
parent
761fef95
Pipeline
#9193
canceled with stages
in 9 minutes and 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
SuperBuild/patches/SQLITE/CMakeLists.txt
View file @
f7a852b8
...
...
@@ -30,7 +30,10 @@ add_definitions(-DSQLITE_ENABLE_RTREE=1)
add_definitions
(
-DSQLITE_OMIT_LOAD_EXTENSION=1
)
add_definitions
(
-DSQLITE_THREADSAFE=1
)
add_library
(
sqlite3 sqlite3.c
)
if
(
WIN32
)
add_library
(
sqlite3 STATIC sqlite3.c
)
else
()
add_library
(
sqlite3 sqlite3.c
)
add_executable
(
sqlite3-bin shell.c sqlite3.c
)
target_link_libraries
(
sqlite3-bin sqlite3
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment