diff options
author | Cara Salter <cara@devcara.com> | 2023-11-21 16:10:08 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-11-21 16:10:08 -0500 |
commit | f78c7cf82726324fcee6b738e3d670bee02ad3ff (patch) | |
tree | ece037cba4f701f67f22bdbd8f916f66a0e08036 /modules | |
parent | be5e0dd226a29d1d45f94d02bb63c64defbe33fd (diff) | |
download | 142bot-f78c7cf82726324fcee6b738e3d670bee02ad3ff.tar.gz 142bot-f78c7cf82726324fcee6b738e3d670bee02ad3ff.zip |
no more cmake!
Diffstat (limited to 'modules')
-rw-r--r-- | modules/Makefile.am | 23 | ||||
-rw-r--r-- | modules/stoplight/stoplight.cpp (renamed from modules/stoplight/main.cpp) | 0 |
2 files changed, 23 insertions, 0 deletions
diff --git a/modules/Makefile.am b/modules/Makefile.am new file mode 100644 index 0000000..edf8278 --- /dev/null +++ b/modules/Makefile.am @@ -0,0 +1,23 @@ +pkglib_LTLIBRARIES = module_mmanager.la module_spotify.la module_reactions.la module_mail.la module_stoplight.la + +module_mmanager_la_SOURCES = mmanager/mmanager.cpp +module_mmanager_la_LDFLAGS = -avoid-version -shared -export-dynamic -module +module_mmanager_la_CXXFLAGS = -I ../include + + +module_spotify_la_SOURCES = spotify/spotify.cpp +module_spotify_la_LDFLAGS = -avoid-version -shared -export-dynamic -module +module_spotify_la_CXXFLAGS = -I ../include + + +module_reactions_la_SOURCES = reactions/reactions.cpp +module_reactions_la_LDFLAGS = -avoid-version -shared -export-dynamic -module +module_reactions_la_CXXFLAGS = -I ../include + +module_mail_la_SOURCES = mail/mail.cpp +module_mail_la_LDFLAGS = -avoid-version -shared -export-dynamic -module +module_mail_la_CXXFLAGS = -I ../include + +module_stoplight_la_SOURCES = stoplight/stoplight.cpp +module_stoplight_la_LDFLAGS = -avoid-version -shared -export-dynamic -module +module_stoplight_la_CXXFLAGS = -I ../include diff --git a/modules/stoplight/main.cpp b/modules/stoplight/stoplight.cpp index 8740a12..8740a12 100644 --- a/modules/stoplight/main.cpp +++ b/modules/stoplight/stoplight.cpp |