diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-05-01 09:43:15 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-05-01 09:43:15 +0200 |
commit | 031a61b81318d9df626b2a332713eb1effa997a1 (patch) | |
tree | 085e531ee4e07594d904106413989fa5fdf14be8 /sample/CMakeLists.txt | |
parent | 5587db012cd0e8f69f811e8959a861112904136a (diff) | |
parent | 38848ee931202f14ff21b07de1033e6fcd17f079 (diff) |
Merge branch 'release/6.8.1-1'6.8.1-1
Diffstat (limited to 'sample/CMakeLists.txt')
-rw-r--r-- | sample/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sample/CMakeLists.txt b/sample/CMakeLists.txt index de25ee7..58d6a99 100644 --- a/sample/CMakeLists.txt +++ b/sample/CMakeLists.txt @@ -5,6 +5,15 @@ project(oniguruma_sample C) add_executable(crnl crnl.c) target_link_libraries(crnl onig) +add_executable(callout callout.c) +target_link_libraries(callout onig) + +add_executable(echo echo.c) +target_link_libraries(echo onig) + +add_executable(count count.c) +target_link_libraries(count onig) + add_executable(encode encode.c) target_link_libraries(encode onig) |