diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-06 22:17:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-06 22:17:43 +0300 |
commit | ff7be6ae2b79a8b3f0a8b094ec51d7ca3a62a265 (patch) | |
tree | 9000ce22a5443dc52a8d03067bd4f120e21062d8 /src/Makefile.am | |
parent | 67447c1b30e85c022e66abfa886bf68f78de4d81 (diff) | |
download | plus-ff7be6ae2b79a8b3f0a8b094ec51d7ca3a62a265.tar.gz plus-ff7be6ae2b79a8b3f0a8b094ec51d7ca3a62a265.tar.bz2 plus-ff7be6ae2b79a8b3f0a8b094ec51d7ca3a62a265.tar.xz plus-ff7be6ae2b79a8b3f0a8b094ec51d7ca3a62a265.zip |
Add resources into build with mingw and automake.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7114ab591..2d681a341 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,8 @@ AUTOMAKE_OPTIONS = subdir-objects +.rc.o: + ${WINDRES} -o $@ $< + # this need for enable asan in tests #AM_TESTS_ENVIRONMENT = \ # ASAN_OPTIONS=detect_leaks=1 @@ -98,6 +101,11 @@ manaplus_SOURCES = dyecmd_SOURCES = endif +if MINGW +manaplus_SOURCES += manaplus.rc +dyecmd_SOURCES += manaplus.rc +endif + if ENABLE_CILKPLUS dyecmd_CXXFLAGS += -DENABLE_CILKPLUS -fcilkplus -lcilkrts manaplus_CXXFLAGS += -DENABLE_CILKPLUS -fcilkplus -lcilkrts @@ -1956,6 +1964,10 @@ manaplustests_SOURCES = ${SRC} \ utils/dumplibs_unittest.cc \ utils/checkutils_unittest.cc +if MINGW +manaplustests_SOURCES += manaplus.rc +endif + if USE_PHYSFS manaplustests_SOURCES += \ fs/physfs/virtfsphys_unittest.cc |