Lines 24-30
file(GLOB SRCS "source/*.c")
Link Here
|
24 |
|
24 |
|
25 |
# Now build the shared library |
25 |
# Now build the shared library |
26 |
add_library(basekit SHARED ${SRCS}) |
26 |
add_library(basekit SHARED ${SRCS}) |
27 |
target_link_libraries(basekit ${BASEKIT_LIBS}) |
27 |
target_link_libraries(basekit dl ${BASEKIT_LIBS}) |
28 |
|
28 |
|
29 |
# ...And the static library |
29 |
# ...And the static library |
30 |
#add_library(basekit_static STATIC ${SRCS}) |
30 |
#add_library(basekit_static STATIC ${SRCS}) |
31 |
- |
|
|