From 7538b4c6201675c566c98b21c8ecddb798a14943 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 25 Jun 2011 04:25:14 +0300 Subject: New map generator added (and SQLite, messed up the commits at that time...) (import from temporary git repo) --- src/sqlite/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/sqlite/CMakeLists.txt (limited to 'src/sqlite/CMakeLists.txt') diff --git a/src/sqlite/CMakeLists.txt b/src/sqlite/CMakeLists.txt new file mode 100644 index 000000000..253625501 --- /dev/null +++ b/src/sqlite/CMakeLists.txt @@ -0,0 +1,16 @@ +if( UNIX ) + set(sqlite3_SRCS sqlite3.c) + set(sqlite3_platform_LIBS "") +else( UNIX ) + set(sqlite3_SRCS sqlite3.c) + set(sqlite3_platform_LIBS "") +endif( UNIX ) + +add_library(sqlite3 ${sqlite3_SRCS}) + +target_link_libraries( + sqlite3 + ${sqlite3_platform_LIBS} +) + + -- cgit v1.2.3