Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wasm-watermarker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nagayama15
wasm-watermarker
Commits
8ae384c4
Commit
8ae384c4
authored
Mar 11, 2019
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the test target.
parent
a5c2ac0b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
.clang-format
.clang-format
+7
-0
CMakeLists.txt
CMakeLists.txt
+6
-1
CMakeLists.txt
test/CMakeLists.txt
+3
-0
test.cpp
test/test.cpp
+1
-0
No files found.
.clang-format
View file @
8ae384c4
BasedOnStyle: LLVM
BasedOnStyle: LLVM
IndentWidth: 4
IndentWidth: 4
AccessModifierOffset: -4
NamespaceIndentation: All
NamespaceIndentation: All
AlwaysBreakTemplateDeclarations: true
AllowShortFunctionsOnASingleLine: Empty
BreakConstructorInitializersBeforeComma: true
ColumnLimit: 120
BinPackParameters: false
BinPackArguments: false
CMakeLists.txt
View file @
8ae384c4
...
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.0)
...
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.0)
project
(
wasm-watermarker VERSION 0.1.0 LANGUAGES CXX
)
project
(
wasm-watermarker VERSION 0.1.0 LANGUAGES CXX
)
set
(
CMAKE_CXX_FLAGS
"-std=c++
17 -Wall -Wextra -Werror -pedantic
"
)
set
(
CMAKE_CXX_FLAGS
"-std=c++
2a -Wall -Wextra -Werror -pedantic -fconcepts
"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"-g3 -O0 -pg"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"-g3 -O0 -pg"
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"-O2 -DNDEBUG -march=native"
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"-O2 -DNDEBUG -march=native"
)
set
(
CMAKE_CXX_FLAGS_RELWITHDEBINFO
"-g3 -Og -pg"
)
set
(
CMAKE_CXX_FLAGS_RELWITHDEBINFO
"-g3 -Og -pg"
)
...
@@ -15,4 +15,9 @@ endif (NOT CMAKE_BUILD_TYPE)
...
@@ -15,4 +15,9 @@ endif (NOT CMAKE_BUILD_TYPE)
include
(
ExternalProject
)
include
(
ExternalProject
)
include
(
cmake/binaryen.cmake
)
include
(
cmake/binaryen.cmake
)
include_directories
(
src
)
add_subdirectory
(
src
)
add_subdirectory
(
src
)
add_subdirectory
(
test
)
test/CMakeLists.txt
0 → 100644
View file @
8ae384c4
add_executable
(
kyut_test
test.cpp
)
test/test.cpp
0 → 100644
View file @
8ae384c4
int
main
()
{}
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