open_source
/
logger
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
0a84e792ee00863c7917d7348dfc2b5380773dee
Authored by
Peter M. Groen
2023-01-15 18:27:36 +0100
1 parent
91d99555
Build library as dynamic
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
CMakeLists.txt
src/CMakeLists.txt
CMakeLists.txt
View file @
0a84e79
...
...
@@ -6,7 +6,7 @@ LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake )
6
6
include(projectheader)
7
7
project_header(osdev_logger)
8
8
9
-set(BUILD_STATIC "O
N
")
9
+set(BUILD_STATIC "O
FF
")
10
10
11
11
add_subdirectory(src)
12
12
add_subdirectory(tests)
...
...
src/CMakeLists.txt
View file @
0a84e79
...
...
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
2
2
include(projectheader)
3
3
project_header(logger)
4
4
5
-set(BUILD_AS_STATIC "O
N
")
5
+set(BUILD_AS_STATIC "O
FF
")
6
6
7
7
include_directories( SYSTEM
8
8
)
...
...