File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ option(AFL_DEBUG "Enable debug output" off)
11
11
12
12
set (CMAKE_CXX_STANDARD 17)
13
13
14
- option (UNICORN_BUILD_SHARED "Build shared instead of static library" ON )
14
+ option (BUILD_SHARED_LIBS "Build shared instead of static library" ON )
15
15
16
- if (UNICORN_BUILD_SHARED )
16
+ if (BUILD_SHARED_LIBS )
17
17
add_library (unicornafl SHARED unicornafl.cpp)
18
18
else ()
19
19
add_library (unicornafl STATIC unicornafl.cpp)
Original file line number Diff line number Diff line change 7
7
8
8
unicorn/build/libunicorn-common.a :
9
9
git submodule update --init --recursive
10
- cmake -S unicorn/ -B unicorn/build -D UNICORN_BUILD_SHARED =no
10
+ cmake -S unicorn/ -B unicorn/build -D BUILD_SHARED_LIBS =no
11
11
$(MAKE ) -C ./unicorn/build -j8
12
12
13
13
build/libunicornafl : build unicorn/build/libunicorn-common.a
14
- cd ./build && cmake .. -D UNICORN_BUILD_SHARED =no
14
+ cd ./build && cmake .. -D BUILD_SHARED_LIBS =no
15
15
$(MAKE ) -C ./build -j8
16
16
17
17
format :
You can’t perform that action at this time.
0 commit comments