Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
46f80e71
Commit
46f80e71
authored
Oct 12, 2018
by
Hubert Chathi
Browse files
remove fuzzers from cmake, since it doesn't work properly
parent
3da5b608
Changes
2
Show whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
46f80e71
...
...
@@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.1)
project
(
olm VERSION 2.3.0 LANGUAGES CXX C
)
option
(
OLM_TESTS
"Build tests"
ON
)
option
(
OLM_FUZZERS
"Build fuzzers"
ON
)
add_definitions
(
-DOLMLIB_VERSION_MAJOR=
${
PROJECT_VERSION_MAJOR
}
)
add_definitions
(
-DOLMLIB_VERSION_MINOR=
${
PROJECT_VERSION_MINOR
}
)
...
...
@@ -114,7 +113,3 @@ export(PACKAGE Olm)
if
(
OLM_TESTS
)
add_subdirectory
(
tests
)
endif
()
if
(
OLM_FUZZERS
)
add_subdirectory
(
fuzzers
)
endif
()
fuzzers/CMakeLists.txt
deleted
100644 → 0
View file @
3da5b608
foreach
(
fuzz IN ITEMS
fuzz_decode_message
fuzz_decrypt
fuzz_group_decrypt
fuzz_unpickle_account
fuzz_unpickle_session
)
add_executable
(
${
fuzz
}
${
fuzz
}
.cpp
)
target_include_directories
(
${
fuzz
}
PRIVATE include
)
target_link_libraries
(
${
fuzz
}
Olm::Olm
)
endforeach
(
fuzz
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment