[CMAKEFILE]: Remove references to sqlite3

Not yet ready, thanks to Otavio for pointing out my mistake.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2007-12-26 15:43:07 -02:00
parent 559995be96
commit 8ca5113571
1 changed files with 0 additions and 5 deletions

View File

@ -27,7 +27,6 @@ endif (NOT CMAKE_BUILD_TYPE)
add_definitions(-D_GNU_SOURCE)
find_package(DWARF REQUIRED)
find_package(SQLite REQUIRED)
_set_fancy(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}${CMAKE_INSTALL_PREFIX}/${__LIB}" "libdir")
@ -58,10 +57,6 @@ set(dtagnames_SRCS dtagnames.c)
add_executable(dtagnames ${dtagnames_SRCS})
target_link_libraries(dtagnames dwarves)
set(dwdb_SRCS dwdb.c)
add_executable(dwdb ${dwdb_SRCS})
target_link_libraries(dwdb dwarves sqlite3)
set(pahole_SRCS pahole.c)
add_executable(pahole ${pahole_SRCS})
target_link_libraries(pahole dwarves dwarves_reorganize)