We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09b2a6 commit 8d50346Copy full SHA for 8d50346
Makefile
@@ -5,9 +5,16 @@ app_name=main
5
6
all: build run
7
8
+# initialize meson build
9
+init:
10
+ -rm -rf build/
11
+ meson setup build
12
+
13
+# build application
14
build:
15
meson compile -C build -v
16
17
+# run application
18
run:
19
./build/serpapi-search-cpp
20
@@ -19,7 +26,3 @@ install_linux:
26
# tested on Apple M1 aarch64
27
install_apple:
21
28
brew install meson pkg-config curl cmake meson ninja rapidjson
22
-
23
-reset:
24
- -rm -rf build/
25
- meson setup build
Rakefile
@@ -1,5 +1,5 @@
1
-require 'erb'
2
+# automatic class generations
+#
3
task :default do
4
puts 'automatic class creation'
files = [
0 commit comments