mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-25 03:29:00 +08:00
Add mg/examples-wine to OurCI
PUBLISHED_FROM=2781248e982719cda495370a373f66d6e4213d83
This commit is contained in:
parent
df311203dc
commit
c581b5e532
@ -1,10 +1,12 @@
|
||||
# Copyright (c) 2014 Cesanta Software
|
||||
# All rights reserved
|
||||
|
||||
SUBDIRS = $(sort $(dir $(wildcard */)))
|
||||
# `wildcard ./*/` works in both linux and linux/wine, while `wildcard */` enumerates nothing under wine
|
||||
SUBDIRS = $(sort $(dir $(wildcard ./*/)))
|
||||
SUBDIRS:=$(filter-out ./, $(SUBDIRS))
|
||||
|
||||
ifeq ($(OS), Windows_NT)
|
||||
SUBDIRS:=$(filter-out load_balancer/ netcat/ raspberry_pi_mjpeg_led/, $(SUBDIRS))
|
||||
SUBDIRS:=$(filter-out ./load_balancer/ ./netcat/ ./raspberry_pi_mjpeg_led/ ./captive_dns_server/, $(SUBDIRS))
|
||||
endif
|
||||
|
||||
.PHONY: $(SUBDIRS)
|
||||
|
@ -5,7 +5,7 @@ CFLAGS = -W -Wall $(CFLAGS_EXTRA)
|
||||
|
||||
ifeq ($(OS), Windows_NT)
|
||||
CFLAGS += -lws2_32 -D_MG_PROVIDE_STRNLEN
|
||||
CC = mingw32-gcc
|
||||
CC = gcc
|
||||
else
|
||||
UNAME_S := $(shell uname -s)
|
||||
ifeq ($(UNAME_S), Linux)
|
||||
|
@ -6,7 +6,7 @@ all: $(PROG)
|
||||
ifeq ($(OS), Windows_NT)
|
||||
# TODO(alashkin): enable SSL in Windows
|
||||
CFLAGS += -lws2_32 -D_MG_PROVIDE_STRNLEN
|
||||
CC = mingw32-gcc
|
||||
CC = gcc
|
||||
else
|
||||
ifeq ($(SSL_LIB),openssl)
|
||||
CFLAGS += -DMG_ENABLE_SSL -lssl -lcrypto
|
||||
|
Loading…
Reference in New Issue
Block a user