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
Valentin Touzeau
lruzdd
Commits
74065911
Commit
74065911
authored
Dec 08, 2018
by
Valentin Touzeau
Committed by
EXT Valentin Touzeau
Dec 08, 2018
Browse files
Fix CMakeLists.txt
parent
9da114e4
Changes
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
74065911
...
...
@@ -57,8 +57,8 @@ add_library(${PLUGIN} SHARED ${SOURCES})
set_property
(
TARGET
${
PLUGIN
}
PROPERTY PREFIX
""
)
set_property
(
TARGET
${
PLUGIN
}
PROPERTY COMPILE_FLAGS
"
${
OTAWA_CFLAGS
}
--std=c++11 -g -Wall -Wextra -pedantic"
)
add_dependencies
(
${
PLUGIN
}
cudd
)
add_dependencies
(
${
PLUGIN
}
extra
)
add_dependencies
(
${
PLUGIN
}
lib
cudd
)
add_dependencies
(
${
PLUGIN
}
lib
extra
)
target_link_libraries
(
${
PLUGIN
}
PUBLIC
"
${
OTAWA_LDFLAGS
}
"
cudd_core cudd_epd cudd_st cudd_util extra
)
...
...
cudd/CMakeLists.txt
View file @
74065911
...
...
@@ -14,7 +14,7 @@ add_custom_command(
)
add_custom_target
(
cudd
lib
cudd
DEPENDS
${
CUDD_LIB_FILE
}
)
...
...
extra/CMakeLists.txt
View file @
74065911
...
...
@@ -9,11 +9,11 @@ add_custom_command(
)
add_custom_target
(
extra
lib
extra
DEPENDS
${
EXTRA_LIB_FILE
}
)
add_dependencies
(
compile_extra compile_
cudd
)
add_dependencies
(
libextra lib
cudd
)
set
(
HEADERS_FOLDER
${
CMAKE_CURRENT_BINARY_DIR
}
/extra20/
)
file
(
MAKE_DIRECTORY
${
HEADERS_FOLDER
}
)
...
...
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