vongosling closed pull request #13: Add license in the head of files and add Notice URL: https://github.com/apache/rocketmq-client-python/pull/13
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..703c28b --- /dev/null +++ b/NOTICE @@ -0,0 +1,5 @@ +Apache RocketMQ +Copyright 2016-2018 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). \ No newline at end of file diff --git a/bin/Makefile b/bin/Makefile deleted file mode 100644 index f850c19..0000000 --- a/bin/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -#/* -#* Licensed to the Apache Software Foundation (ASF) under one or more -#* contributor license agreements. See the NOTICE file distributed with -#* this work for additional information regarding copyright ownership. -#* The ASF licenses this file to You under the Apache License, Version 2.0 -#* (the "License"); you may not use this file except in compliance with -#* the License. You may obtain a copy of the License at -#* -#* http://www.apache.org/licenses/LICENSE-2.0 -#* -#* Unless required by applicable law or agreed to in writing, software -#* distributed under the License is distributed on an "AS IS" BASIS, -#* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -#* See the License for the specific language governing permissions and -#* limitations under the License. -#*/ - -clean: - $(RM) -rf *_d.* - $(RM) -rf core - $(RM) -rf *.exp* - $(RM) -rf *.pdb* - $(RM) -rf *Producer.lib* - $(RM) -rf *RocketMQClient.dll* - $(RM) -rf *RocketMQClient.lib* - $(RM) -rf *pushConsumer.lib* - $(RM) -rf *.a *.so diff --git a/project/CMakeLists.txt b/project/CMakeLists.txt index 6f42c44..c1b83f2 100644 --- a/project/CMakeLists.txt +++ b/project/CMakeLists.txt @@ -14,7 +14,7 @@ #* See the License for the specific language governing permissions and #* limitations under the License. #*/ -# source files + project(rocketmqclientpython) file(GLOB_RECURSE SRC_FILES ${CMAKE_SOURCE_DIR}/src/*) diff --git a/unitests/CMakeLists.txt b/unitests/CMakeLists.txt index 883ec24..02004ae 100644 --- a/unitests/CMakeLists.txt +++ b/unitests/CMakeLists.txt @@ -1,3 +1,20 @@ +#/* +#* Licensed to the Apache Software Foundation (ASF) under one or more +#* contributor license agreements. See the NOTICE file distributed with +#* this work for additional information regarding copyright ownership. +#* The ASF licenses this file to You under the Apache License, Version 2.0 +#* (the "License"); you may not use this file except in compliance with +#* the License. You may obtain a copy of the License at +#* +#* http://www.apache.org/licenses/LICENSE-2.0 +#* +#* Unless required by applicable law or agreed to in writing, software +#* distributed under the License is distributed on an "AS IS" BASIS, +#* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +#* See the License for the specific language governing permissions and +#* limitations under the License. +#*/ + add_executable(runUnitTests PythonWrapperTest.cpp ) ---------------------------------------------------------------- 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
