Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
2ffd96ea
Commit
2ffd96ea
authored
Aug 30, 2018
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMake: add CXX for fuzzing
parent
6aff38fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
CMakeLists.txt
CMakeLists.txt
+8
-3
No files found.
CMakeLists.txt
View file @
2ffd96ea
...
...
@@ -5,7 +5,14 @@ include(TestBigEndian)
include
(
CheckCSourceCompiles
)
include
(
CheckSymbolExists
)
include
(
cmake/macros.cmake
)
project
(
libaec C
)
option
(
AEC_FUZZING
"Enable build of fuzzing targets"
OFF
)
if
(
AEC_FUZZING
)
project
(
libaec C CXX
)
else
(
AEC_FUZZING
)
project
(
libaec C
)
endif
(
AEC_FUZZING
)
set
(
libaec_VERSION_MAJOR 1
)
set
(
libaec_VERSION_MINOR 0
)
set
(
libaec_VERSION_PATCH 2
)
...
...
@@ -53,8 +60,6 @@ include_directories("${PROJECT_SOURCE_DIR}/src")
add_subdirectory
(
src
)
add_subdirectory
(
tests
)
option
(
AEC_FUZZING
"Enable build of fuzzing targets"
OFF
)
if
(
AEC_FUZZING
)
add_subdirectory
(
fuzzing
)
endif
()
...
...
Write
Preview
Markdown
is supported
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