We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09284f4 + e944002 commit 0deeda4Copy full SHA for 0deeda4
CMakeLists.txt
@@ -4,8 +4,13 @@ cmake_minimum_required(VERSION 3.12.3)
4
project(SQLite
5
LANGUAGES C)
6
7
+# Generate PIC for ELF/MachO targets.
8
set(CMAKE_POSITION_INDEPENDENT_CODE YES)
9
10
+# Use hidden visibility for ELF/MachO targets.
11
+set(CMAKE_C_VISIBILITY_PRESET hidden)
12
+set(CMAKE_VISIBILITY_INLINES_HIDDEN YES)
13
+
14
add_library(SQLite3
15
Sources/CSQLite/sqlite3.c)
16
if(CMAKE_SYSTEM_NAME STREQUAL Windows AND BUILD_SHARED_LIBS)
0 commit comments