File tree Expand file tree Collapse file tree 10 files changed +60
-61
lines changed Expand file tree Collapse file tree 10 files changed +60
-61
lines changed Original file line number Diff line number Diff line change 1
1
include $(SOURCE_ROOT ) /extern/catchorg/flags.mk
2
2
3
3
SRC_DIRS_$(d) += \
4
- bench /coders \
5
- bench /json \
6
- bench /string \
7
- bench /util \
8
- test/util
4
+ $( d ) /coders \
5
+ $( d ) /json \
6
+ $( d ) /string \
7
+ $( d ) /util \
8
+ $( d ) /../ test/util
9
9
10
10
SRC_$(d) := \
11
11
$(d ) /main.cpp
Original file line number Diff line number Diff line change
1
+ SRC_DIRS_$(d) := \
2
+ $(d ) /base64 \
3
+ $(d ) /huffman
4
+
5
+ $(eval $(call WILDCARD_SOURCES, CPP))
Original file line number Diff line number Diff line change 1
1
SRC_DIRS_$(d) := \
2
- fly/coders \
3
- fly/coders/base64 \
4
- fly/coders/huffman \
5
- fly/config \
6
- fly/logger \
7
- fly/parser \
8
- fly/path \
9
- fly/socket \
10
- fly/system \
11
- fly/task \
12
- fly/types/bit_stream \
13
- fly/types/bit_stream/detail \
14
- fly/types/json
2
+ $(d ) /coders \
3
+ $(d ) /config \
4
+ $(d ) /logger \
5
+ $(d ) /parser \
6
+ $(d ) /path \
7
+ $(d ) /socket \
8
+ $(d ) /system \
9
+ $(d ) /task \
10
+ $(d ) /types
15
11
16
12
# Add libfly.a and libfly.so to the archived release package.
17
13
$(eval $(call ADD_REL_LIB))
Original file line number Diff line number Diff line change 1
- SRC_$(d) := \
2
- $(d ) /detail/console_sink.cpp \
3
- $(d ) /detail/file_sink.cpp \
4
- $(d ) /detail/nix/styler_proxy_impl.cpp \
5
- $(d ) /detail/registry.cpp \
6
- $(d ) /detail/styler_proxy.cpp \
7
- $(d ) /log.cpp \
8
- $(d ) /logger.cpp \
9
- $(d ) /logger_config.cpp \
10
- $(d ) /styler.cpp
1
+ SRC_DIRS_$(d) := \
2
+ $(d ) /detail \
3
+ $(d ) /detail/nix
4
+
5
+ $(eval $(call WILDCARD_SOURCES, CPP))
Original file line number Diff line number Diff line change 1
- SRC_$(d) := \
2
- $(d ) /path_config.cpp \
3
- $(d ) /path_monitor.cpp
4
-
5
1
ifeq ($(SYSTEM ) , LINUX)
6
- SRC_ $(d) + = \
7
- $(d ) /nix/path_monitor_impl.cpp
2
+ SRC_DIRS_ $(d) : = \
3
+ $(d ) /nix
8
4
else ifeq ($(SYSTEM), MACOS)
9
- SRC_ $(d) + = \
10
- $(d ) /mac/path_monitor_impl.mm
5
+ SRC_DIRS_ $(d) : = \
6
+ $(d ) /mac
11
7
endif
8
+
9
+ $(eval $(call WILDCARD_SOURCES, CPP))
Original file line number Diff line number Diff line change 1
- SRC_$(d) := \
2
- $(d ) /async_request.cpp \
3
- $(d ) /socket.cpp \
4
- $(d ) /socket_config.cpp \
5
- $(d ) /socket_manager.cpp \
6
- $(d ) /nix/socket_impl.cpp \
7
- $(d ) /nix/socket_manager_impl.cpp
1
+ SRC_DIRS_$(d) := \
2
+ $(d ) /nix
3
+
4
+ $(eval $(call WILDCARD_SOURCES, CPP))
Original file line number Diff line number Diff line change
1
+ SRC_DIRS_$(d) := \
2
+ $(d ) /bit_stream \
3
+ $(d ) /bit_stream/detail \
4
+ $(d ) /json
Original file line number Diff line number Diff line change 1
1
include $(SOURCE_ROOT ) /extern/catchorg/flags.mk
2
2
3
3
SRC_DIRS_$(d) += \
4
- test/coders \
5
- test/config \
6
- test/logger \
7
- test/parser \
8
- test/path \
9
- test/socket \
10
- test/system \
11
- test/task \
12
- test/traits \
13
- test/types/bit_stream \
14
- test/types/concurrency \
15
- test/types/json \
16
- test/types/numeric \
17
- test/types/string \
18
- test/util
4
+ $(d ) /coders \
5
+ $(d ) /config \
6
+ $(d ) /logger \
7
+ $(d ) /parser \
8
+ $(d ) /path \
9
+ $(d ) /socket \
10
+ $(d ) /system \
11
+ $(d ) /task \
12
+ $(d ) /traits \
13
+ $(d ) /types \
14
+ $(d ) /util
19
15
20
16
ifeq ($(SYSTEM ) , LINUX)
21
17
SRC_DIRS_$(d) += \
22
- test /mock
18
+ $( d ) /mock
23
19
endif
24
20
25
21
SRC_$(d) := \
Original file line number Diff line number Diff line change
1
+ SRC_DIRS_$(d) := \
2
+ $(d ) /nix
3
+
1
4
SRC_$(d) := \
2
- $(d ) /mock_system.cpp \
3
- $(d ) /nix/mock_calls.cpp
5
+ $(d ) /mock_system.cpp
4
6
5
7
CXXFLAGS_$(d) += -Wno-missing-declarations
Original file line number Diff line number Diff line change
1
+ SRC_DIRS_$(d) += \
2
+ $(d ) /bit_stream \
3
+ $(d ) /concurrency \
4
+ $(d ) /json \
5
+ $(d ) /numeric \
6
+ $(d ) /string
You can’t perform that action at this time.
0 commit comments