Browse Source

Make library files static

pull/176/head
6367f766 1 year ago
parent
commit
1b953c4977
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      devLib/CMakeLists.txt
  2. +1
    -1
      wiringPi/CMakeLists.txt

+ 1
- 1
devLib/CMakeLists.txt View File

@@ -23,7 +23,7 @@ set(wiringPiDev_h
)

# Add library target
add_library (${TARGET} SHARED ${wiringPiDev_src})
add_library (${TARGET} STATIC ${wiringPiDev_src})

# Version
set_target_properties(${TARGET} PROPERTIES


+ 1
- 1
wiringPi/CMakeLists.txt View File

@@ -36,7 +36,7 @@ set(wiringPi_h
)

# Add library target
add_library (${TARGET} SHARED ${wiringPi_src})
add_library (${TARGET} STATIC ${wiringPi_src})

# Version
set_target_properties(${TARGET} PROPERTIES


Loading…
Cancel
Save