cjolivier01 commented on a change in pull request #9832: Ability to not build
examples during the build of the cpp package.
URL: https://github.com/apache/incubator-mxnet/pull/9832#discussion_r169219022
##########
File path: cpp-package/CMakeLists.txt
##########
@@ -1,21 +1,23 @@
if(USE_CPP_PACKAGE)
-set(CPP_PACKAGE_OP_H_HEADER ${CMAKE_CURRENT_LIST_DIR}/include/mxnet-cpp/op.h)
+ set(CPP_PACKAGE_OP_H_HEADER ${CMAKE_CURRENT_LIST_DIR}/include/mxnet-cpp/op.h)
-if(MSVC)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8")
-endif(MSVC)
+ if(MSVC)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8")
+ endif(MSVC)
-add_custom_target(
- cpp_package_op_h ALL
- BYPRODUCTS ${CPP_PACKAGE_OP_H_HEADER}
- MAIN_DEPENDENCY mxnet
- DEPENDS mxnet ${CMAKE_CURRENT_SOURCE_DIR}/scripts/OpWrapperGenerator.py
- COMMAND echo "Running: OpWrapperGenerator.py"
- COMMAND python OpWrapperGenerator.py $<TARGET_FILE:mxnet>
- WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts
-)
+ add_custom_target(
+ cpp_package_op_h ALL
+ BYPRODUCTS ${CPP_PACKAGE_OP_H_HEADER}
+ MAIN_DEPENDENCY mxnet
+ DEPENDS mxnet ${CMAKE_CURRENT_SOURCE_DIR}/scripts/OpWrapperGenerator.py
+ COMMAND echo "Running: OpWrapperGenerator.py"
+ COMMAND python OpWrapperGenerator.py $<TARGET_FILE:mxnet>
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/scripts
+ )
-add_subdirectory(example)
+ if(NOT DO_NOT_BUILD_EXAMPLES)
Review comment:
naming seems kind of generic and not specific to cop-package
what current use cases don?t build?
for test target probably they should build?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services