mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-12 12:40:58 +00:00
d2546e3979
- Renamed base/options.cpp to base/commandLine.cpp because of conflict with gui/options.cpp which sit in same directory in MSVC builds - Moved AudioCDManager singleton declaration outside of Audio namespace - Fixed numerous MSVC warning of potentially uninitialized variables and int <-> bool conversions. svn-id: r22397
15 lines
176 B
Makefile
15 lines
176 B
Makefile
MODULE := base
|
|
|
|
MODULE_OBJS := \
|
|
engine.o \
|
|
main.o \
|
|
commandLine.o \
|
|
plugins.o \
|
|
version.o
|
|
|
|
MODULE_DIRS += \
|
|
base
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|