This is mostly working but is missing -exec and -ok support. It can search files though :^)
12 lines
169 B
CMake
12 lines
169 B
CMake
set(SOURCES
|
|
main.cpp
|
|
Node.cpp
|
|
Token.cpp
|
|
)
|
|
|
|
add_executable(find ${SOURCES})
|
|
banan_link_library(find ban)
|
|
banan_link_library(find libc)
|
|
|
|
install(TARGETS find OPTIONAL)
|