
PROJECT(mtag)

#if you don't want the full compiler output, remove the following line
SET(CMAKE_VERBOSE_MAKEFILE OFF)

#add definitions, compiler switches, etc.
ADD_DEFINITIONS( -O2)

#list all source files here
ADD_EXECUTABLE(mtag main.cpp tagger.cpp sql.cpp meta.cpp utils.cpp)

TARGET_LINK_LIBRARIES(mtag tag sqlite3)

INCLUDE_DIRECTORIES(/usr/include /usr/include/taglib)
