project( hello_world_lib )

# set( FILEWRITE_SOURCES hello_world_lib.cpp hello_world_lib.h)

add_library(${PROJECT_NAME} hello_world_lib.cpp hello_world_lib.h)

set_target_properties(${PROJECT_NAME} PROPERTIES COMPILE_FLAGS "-O2 -Wall -shared")

# if you wanted to add other libs
# target_link_libraries(filewrite crypto ssl z)
