-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLiquid.cbp
109 lines (109 loc) · 4.08 KB
/
Liquid.cbp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_project_file>
<FileVersion major="1" minor="6" />
<Project>
<Option title="Liquid" />
<Option makefile_is_custom="1" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<MakeCommands>
<Build command="$make -f $makefile $target -j 4" />
<CompileFile command="$make -f $makefile $file" />
<Clean command="$make -f $makefile clean$target" />
<DistClean command="$make -f $makefile distclean$target" />
<AskRebuildNeeded command="$make -q -f $makefile $target" />
<SilentBuild command="$make -f $makefile $target -j 4 > $(CMD_NULL)" />
</MakeCommands>
<Build>
<Target title="library">
<Option output="bin/libliquid" prefix_auto="1" extension_auto="1" />
<Option working_dir="bin" />
<Option object_output="obj/" />
<Option type="1" />
<Option compiler="gcc" />
<Option projectCompilerOptionsRelation="2" />
<MakeCommands>
<Build command="$make -f $makefile $target -j 4" />
<CompileFile command="$make -f $makefile $file" />
<Clean command="$make -f $makefile clean$target" />
<DistClean command="$make -f $makefile distclean$target" />
<AskRebuildNeeded command="$make -q -f $makefile $target" />
<SilentBuild command="$make -f $makefile $target -j 4 > $(CMD_NULL)" />
</MakeCommands>
</Target>
<Target title="test">
<Option output="bin/01sanity" prefix_auto="1" extension_auto="1" />
<Option type="1" />
<Option compiler="gcc" />
<Option parameters="--gtest_filter=sanity.forloop" />
<MakeCommands>
<Build command="$make -f $makefile $target -j 4" />
<CompileFile command="$make -f $makefile $file" />
<Clean command="$make -f $makefile clean$target" />
<DistClean command="$make -f $makefile distclean$target" />
<AskRebuildNeeded command="$make -q -f $makefile $target" />
<SilentBuild command="$make -f $makefile $target -j 4 > $(CMD_NULL)" />
</MakeCommands>
</Target>
</Build>
<Compiler>
<Add option="-Wall" />
<Add option="-fexceptions -std=c++17" />
<Add directory="/usr/include/qdbm" />
</Compiler>
<Linker>
<Add option="-Wl,-Bstatic" />
<Add option="-licuuc" />
<Add option="-licui18n" />
<Add option="-Wl,-Bdynamic" />
<Add library="libqdbm" />
<Add library="pthread" />
<Add library="libz" />
<Add library="libtokyocabinet" />
</Linker>
<Unit filename="CMakeLists.txt" />
<Unit filename="Makefile">
<Option target="library" />
</Unit>
<Unit filename="README.md" />
<Unit filename="configure" />
<Unit filename="perl/Makefile.PL" />
<Unit filename="perl/XS.xs" />
<Unit filename="perl/lib/WWW/Shopify/Liquid/XS.pm" />
<Unit filename="perl/t/WWW-Shopify-Liquid-XS.t" />
<Unit filename="perl/test.pl" />
<Unit filename="ruby/liquidcpp-dir/lib/liquidcpp-dir.rb" />
<Unit filename="ruby/liquidcpp-dir/liquidcpp-dir.gemspec" />
<Unit filename="ruby/liquidcpp-dir/t/test.rb" />
<Unit filename="ruby/liquidcpp/Rakefile" />
<Unit filename="ruby/liquidcpp/ext/liquidc/extconf.rb" />
<Unit filename="ruby/liquidcpp/ext/liquidcpp/liquid.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="ruby/liquidcpp/lib/liquidcpp.rb" />
<Unit filename="ruby/liquidcpp/t/test.rb" />
<Unit filename="src/common.h" />
<Unit filename="src/compiler.cpp" />
<Unit filename="src/compiler.h" />
<Unit filename="src/context.cpp" />
<Unit filename="src/context.h" />
<Unit filename="src/cppvariable.h" />
<Unit filename="src/dialect.cpp" />
<Unit filename="src/dialect.h" />
<Unit filename="src/interface.cpp" />
<Unit filename="src/interface.h" />
<Unit filename="src/lexer.h" />
<Unit filename="src/liquid.h" />
<Unit filename="src/optimizer.cpp" />
<Unit filename="src/optimizer.h" />
<Unit filename="src/parser.cpp" />
<Unit filename="src/parser.h" />
<Unit filename="src/rapidjsonvariable.h" />
<Unit filename="src/renderer.cpp" />
<Unit filename="src/renderer.h" />
<Unit filename="src/web.cpp" />
<Unit filename="src/web.h" />
<Unit filename="t/01sanity.cpp" />
<Extensions />
</Project>
</CodeBlocks_project_file>