mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +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)
|