X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stargazer/plugins/store/postgresql/CMakeLists.txt diff --git a/stargazer/plugins/store/postgresql/CMakeLists.txt b/stargazer/plugins/store/postgresql/CMakeLists.txt new file mode 100644 index 00000000..3c9027ed --- /dev/null +++ b/stargazer/plugins/store/postgresql/CMakeLists.txt @@ -0,0 +1,14 @@ +find_package ( PostgreSQL REQUIRED ) + +set ( CPP_FILES postgresql_store.cpp + postgresql_store_admins.cpp + postgresql_store_corporations.cpp + postgresql_store_messages.cpp + postgresql_store_services.cpp + postgresql_store_tariffs.cpp + postgresql_store_users.cpp + postgresql_store_utils.cpp ) + +add_library ( mod_store_postgresql MODULE ${CPP_FILES} ) + +target_link_libraries ( mod_store_postgresql crypto logger common PostgreSQL::PostgreSQL )