]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/store/firebird/CMakeLists.txt
Port to CMake, get rid of os_int.h.
[stg.git] / stargazer / plugins / store / firebird / CMakeLists.txt
diff --git a/stargazer/plugins/store/firebird/CMakeLists.txt b/stargazer/plugins/store/firebird/CMakeLists.txt
new file mode 100644 (file)
index 0000000..d21f79a
--- /dev/null
@@ -0,0 +1,14 @@
+find_package ( FBClient REQUIRED )
+
+set ( CPP_FILES firebird_store.cpp
+                firebird_store_admins.cpp
+                firebird_store_corporations.cpp
+                firebird_store_messages.cpp
+                firebird_store_services.cpp
+                firebird_store_tariffs.cpp
+                firebird_store_users.cpp
+                firebird_store_utils.cpp )
+
+add_library ( mod_store_firebird MODULE ${CPP_FILES} )
+
+target_link_libraries ( mod_store_firebird crypto common logger ibpp FBClient::FBClient )