mirror of
https://github.com/tstack/lnav
synced 2024-11-03 23:15:38 +00:00
8776f6a703
Defect Number: Reviewed By: Testing Done:
40 lines
1.5 KiB
CMake
40 lines
1.5 KiB
CMake
|
|
include_directories(../../lbuild/src ../src/ /opt/local/include)
|
|
|
|
add_executable(test_chunky_index test_chunky_index.cc)
|
|
add_executable(test_pcrepp test_pcrepp.cc ../src/lnav_log.cc ../src/pcrepp.cc)
|
|
add_executable(test_reltime test_reltime.cc
|
|
../src/relative_time.cc
|
|
../src/pcrepp.cc
|
|
../src/lnav_log.cc)
|
|
add_executable(test_date_time_scanner test_date_time_scanner.cc
|
|
../src/lnav_util.cc
|
|
../../lbuild/src/time_fmts.cc
|
|
../src/ptimec_rt.cc
|
|
../src/pcrepp.cc
|
|
../src/lnav_log.cc
|
|
../src/spookyhash/SpookyV2.cpp)
|
|
add_executable(test_abbrev test_abbrev.cc
|
|
../src/lnav_util.cc
|
|
../../lbuild/src/time_fmts.cc
|
|
../src/ptimec_rt.cc
|
|
../src/pcrepp.cc
|
|
../src/lnav_log.cc
|
|
../src/spookyhash/SpookyV2.cpp)
|
|
add_executable(test_help_text_formatter test_help_text_formatter.cc
|
|
../src/help_text_formatter.cc
|
|
../src/view_curses.cc
|
|
../src/lnav_log.cc
|
|
../src/ansi_scrubber.cc
|
|
../src/pcrepp.cc)
|
|
add_executable(drive_sql_anno drive_sql_anno.cc ../src/lnav_log.cc ../src/pcrepp.cc)
|
|
link_directories(/opt/local/lib)
|
|
target_link_libraries(test_pcrepp /opt/local/lib/libpcre.a)
|
|
target_link_libraries(test_reltime /opt/local/lib/libpcre.a)
|
|
target_link_libraries(test_date_time_scanner /opt/local/lib/libpcre.a)
|
|
target_link_libraries(test_abbrev /opt/local/lib/libpcre.a)
|
|
target_link_libraries(drive_sql_anno /opt/local/lib/libpcre.a)
|
|
target_link_libraries(test_help_text_formatter
|
|
/opt/local/lib/libpcre.a
|
|
/opt/local/lib/libncurses.a)
|