[Test] Added tests for CUtil::SplitParams
[xbmc.git] / xbmc / dbwrappers / CMakeLists.txt
blob2c5f0f8f09645dc981f6b6897d106be050863be1
1 set(SOURCES Database.cpp
2             DatabaseQuery.cpp
3             dataset.cpp
4             qry_dat.cpp
5             sqlitedataset.cpp)
7 set(HEADERS Database.h
8             DatabaseQuery.h
9             dataset.h
10             qry_dat.h
11             sqlitedataset.h)
13 if(TARGET MySqlClient::MySqlClient OR TARGET MariaDBClient::MariaDBClient)
14   list(APPEND SOURCES mysqldataset.cpp)
15   list(APPEND HEADERS mysqldataset.h)
16 endif()
18 core_add_library(dbwrappers)