Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 8a71db4

Browse files
committed
Remove CXX compiler verbose flag for swig binding
When compiling swig generated files, the CXX compiler flag list included -v. This leaded to unnecessary log output during compilation. Remove the flag Signed-off-by: Kevin Rocard <[email protected]>
1 parent 0f0dbe4 commit 8a71db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH})
3535
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
3636

3737
SET_PROPERTY(SOURCE pfw.i PROPERTY CPLUSPLUS ON)
38-
SET_PROPERTY(SOURCE pfw.i PROPERTY SWIG_FLAGS "-v" "-Wall" "-Werror")
38+
SET_PROPERTY(SOURCE pfw.i PROPERTY SWIG_FLAGS "-Wall" "-Werror")
3939

4040
SWIG_ADD_MODULE(PyPfw python pfw.i)
4141
SWIG_LINK_LIBRARIES(PyPfw parameter ${PYTHON_LIBRARIES})

0 commit comments

Comments
 (0)