7 lines
178 B
CMake
7 lines
178 B
CMake
file(GLOB_RECURSE sources *.c *.h)
|
|
|
|
add_executable(ropam ${sources})
|
|
target_link_libraries(ropam
|
|
libropkg
|
|
Bluelib::Core Bluelib::Object Bluelib::Io Bluelib::Term Bluelib::Cmd)
|