mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
The dynamic loader is now stable enough to be used everywhere in the system - so this commit does just that. No More .a Files, Long Live .so's!
11 lines
252 B
CMake
11 lines
252 B
CMake
set(SOURCES
|
|
math.cpp
|
|
)
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdlib")
|
|
serenity_libc(LibM m)
|
|
#target_link_libraries(LibM)
|
|
#set_target_properties(LibM PROPERTIES OUTPUT_NAME m)
|
|
#target_link_directories(LibM PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
|