mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
8 lines
163 B
CMake
8 lines
163 B
CMake
set(SOURCES
|
|
DynamicLib.cpp
|
|
)
|
|
|
|
add_library(DynamicLib SHARED ${SOURCES})
|
|
target_link_libraries(DynamicLib LibC)
|
|
install(TARGETS DynamicLib DESTINATION usr/lib)
|