Moved the settings classes fomr the database module to the web module.

This commit is contained in:
Relintai 2022-07-06 12:59:34 +02:00
parent 14b0d60d70
commit 8422566d28
6 changed files with 0 additions and 38 deletions

View File

@ -1,12 +0,0 @@
#!/usr/bin/env python
Import("env_mod")
Import("env")
env_mod.core_sources = []
env_mod.add_source_files(env_mod.core_sources, "*.cpp")
# Build it all as a library
lib = env_mod.add_library("db_settings", env_mod.core_sources)
env.Prepend(LIBS=[lib])

View File

@ -1,26 +0,0 @@
import os
import platform
import sys
def is_active():
return True
def get_name():
return "db_settings"
def can_build():
return True
def get_opts():
return []
def get_flags():
return []
def configure(env):
pass