[asl] 77/177: Converting targets names to lower case

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Aug 27 09:22:43 UTC 2015


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch master
in repository asl.

commit 9ce0bcc87cce2a535e6b18f517125a1471fa3f7f
Author: Avtech Scientific <AvtechScientific at users.noreply.github.com>
Date:   Wed Jul 8 12:05:33 2015 +0300

    Converting targets names to lower case
---
 README.md                             | 32 ++++++++++++++++----------------
 examples/flow/locomotive_in_tunnel.cc |  2 +-
 src/CMakeLists.txt                    | 16 ++++++++--------
 src/acl/CMakeLists.txt                |  2 +-
 src/acl/Operators/CMakeLists.txt      | 14 +++++++-------
 src/acl/aclMath/CMakeLists.txt        | 12 ++++++------
 src/numExtend/CMakeLists.txt          | 12 ++++++------
 7 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/README.md b/README.md
index ce73949..393831c 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,11 @@ __Advanced Simulation Library (ASL)__ is a free and open source multiphysics sim
 ASL is distributed under the free GNU Affero General Public License (AGPLv3) with an optional [commercial license](http://asl.org.il/licensing). Professional support and consulting services are provided by [Avtech Scientific](http://avtechscientific.com), whose team created and continues to extend the library. The company offers [innovative R&D solutions and services](http://avtechscientific.com/services) and is involved in diverse academic and industrial [collaborative projects](http:// [...]
 
 
+## Further information
+
+For more information, please visit <http://asl.org.il>.
+
+
 ## Quick Start
 
 ### Installation
@@ -33,19 +38,14 @@ ASL is distributed under the free GNU Affero General Public License (AGPLv3) wit
 ### Writing your own code using ASL
 
 1. Take a look on examples, start with [examples/flow/locomotive_in_tunnel.cc](http://asl.org.il/doc/Developer-Guide/locomotive_in_tunnel_8cc-example.html)
-2. ASL installation supplies `ASL.pc` and `ASLConfig.cmake` files. To build your program using
-	- `pkg-config`: launch ``c++ `pkg-config --cflags --libs ASL` -o locomotive_in_tunnel locomotive_in_tunnel.cc``
-	- `cmake`: write a basic `CMakeLists.txt`
-		```
-		project(locomotive)
-		cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
-		find_package(ASL 0.1.4 CONFIG REQUIRED)
-		set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -std=c++11")
-		add_executable(locomotive_in_tunnel locomotive_in_tunnel.cc)
-		target_link_libraries(locomotive_in_tunnel PRIVATE ASL::aslnum ASL::aslvtk ASL::asl)
-		```
-
-
-## Further information
-
-For more information, please visit <http://asl.org.il>.
+2. ASL installation supplies `ASL.pc` and `ASLConfig.cmake` files. To build your program using:
+	- `pkg-config` - launch ``c++ `pkg-config --cflags --libs ASL` -o locomotive_in_tunnel locomotive_in_tunnel.cc``
+	- `cmake` - write a basic `CMakeLists.txt` file:
+			```
+			project(locomotive)
+			cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
+			find_package(ASL 0.1.4 CONFIG REQUIRED)
+			set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
+			add_executable(locomotive_in_tunnel locomotive_in_tunnel.cc)
+			target_link_libraries(locomotive_in_tunnel PRIVATE ASL::aslnum ASL::aslvtk ASL::asl)
+			```
\ No newline at end of file
diff --git a/examples/flow/locomotive_in_tunnel.cc b/examples/flow/locomotive_in_tunnel.cc
index 5a364c8..5bfbfd5 100644
--- a/examples/flow/locomotive_in_tunnel.cc
+++ b/examples/flow/locomotive_in_tunnel.cc
@@ -212,4 +212,4 @@ int main(int argc, char* argv[])
 	std::cout << "Ok" << endl;
 
 	return 0;
-}
+}
\ No newline at end of file
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 0c8d1a9..a96dfc7 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -11,24 +11,24 @@ add_subdirectory(numExtend)
 include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/acl)
 
 
-# aslCommon
+# aslcommon
 
-set(aslCommon_PUBLIC_HEADERS
+set(aslcommon_PUBLIC_HEADERS
 	utilities/aslParametersManager.h
 	utilities/aslTimeStamp.h
 	aslUtilities.h
 )
 
-set(aslCommon_SOURCES
-	${aslCommon_PUBLIC_HEADERS}
+set(aslcommon_SOURCES
+	${aslcommon_PUBLIC_HEADERS}
 	utilities/aslParametersManager.cxx
 	utilities/aslTimeStamp.cxx
 	aslUtilities.cxx
 )
 
-add_library(aslCommon ${aslCommon_SOURCES})
-target_link_libraries(aslCommon PRIVATE ${Boost_LIBRARIES})
-INSTALL_SUBLIB(aslCommon aslCommon_PUBLIC_HEADERS)
+add_library(aslcommon ${aslcommon_SOURCES})
+target_link_libraries(aslcommon PRIVATE ${Boost_LIBRARIES})
+INSTALL_SUBLIB(aslcommon aslcommon_PUBLIC_HEADERS)
 
 
 # asl
@@ -55,7 +55,7 @@ set(asl_SOURCES
 )
 
 add_library(asl ${asl_SOURCES})
-target_link_libraries(asl PUBLIC aslCommon aslacl asldata aslmath ${Boost_LIBRARIES})
+target_link_libraries(asl PUBLIC aslcommon aslacl asldata aslmath ${Boost_LIBRARIES})
 INSTALL_SUBLIB(asl asl_PUBLIC_HEADERS)
 
 
diff --git a/src/acl/CMakeLists.txt b/src/acl/CMakeLists.txt
index e1f5403..77fa291 100644
--- a/src/acl/CMakeLists.txt
+++ b/src/acl/CMakeLists.txt
@@ -63,5 +63,5 @@ set(aslacl_SOURCES
 )
 
 add_library(aslacl ${aslacl_SOURCES})
-target_link_libraries(aslacl PUBLIC aslCommon aslaclOperators aslaclMath ${OpenCL_LIBRARIES})
+target_link_libraries(aslacl PUBLIC aslcommon aslacloperators aslaclmath ${OpenCL_LIBRARIES})
 INSTALL_SUBLIB(aslacl aslacl_PUBLIC_HEADERS)
diff --git a/src/acl/Operators/CMakeLists.txt b/src/acl/Operators/CMakeLists.txt
index f634ccd..016f9ad 100644
--- a/src/acl/Operators/CMakeLists.txt
+++ b/src/acl/Operators/CMakeLists.txt
@@ -1,9 +1,9 @@
 include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/acl)
 
 
-# aslaclOperators
+# aslacloperators
 
-set(aslaclOperators_PUBLIC_HEADERS
+set(aslacloperators_PUBLIC_HEADERS
 	aclElementAssignmentSafe.h
 	aclElementIfElse.h
 	aclElementSum.h
@@ -29,8 +29,8 @@ set(aslaclOperators_PUBLIC_HEADERS
 	aclElementConvert.h
 )
 
-set(aslaclOperators_SOURCES
-	${aslaclOperators_PUBLIC_HEADERS}
+set(aslacloperators_SOURCES
+	${aslacloperators_PUBLIC_HEADERS}
 	aclElementAssignmentSafe.cxx
 	aclElementIfElse.cxx
 	aclElementSum.cxx
@@ -56,6 +56,6 @@ set(aslaclOperators_SOURCES
 	aclElementConvert.cxx
 )
 
-add_library(aslaclOperators ${aslaclOperators_SOURCES})
-target_link_libraries(aslaclOperators PRIVATE ${OpenCL_LIBRARIES})
-INSTALL_SUBLIB(aslaclOperators aslaclOperators_PUBLIC_HEADERS)
+add_library(aslacloperators ${aslacloperators_SOURCES})
+target_link_libraries(aslacloperators PRIVATE ${OpenCL_LIBRARIES})
+INSTALL_SUBLIB(aslacloperators aslacloperators_PUBLIC_HEADERS)
diff --git a/src/acl/aclMath/CMakeLists.txt b/src/acl/aclMath/CMakeLists.txt
index 3d5f738..f474147 100644
--- a/src/acl/aclMath/CMakeLists.txt
+++ b/src/acl/aclMath/CMakeLists.txt
@@ -1,8 +1,8 @@
 include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/acl)
 
-# aslaclMath
+# aslaclmath
 
-set(aslaclMath_PUBLIC_HEADERS
+set(aslaclmath_PUBLIC_HEADERS
 	aclVectorOfElements.h
 	aclVectorOfElementsDef.h
 	aclVectorOfElementsOperations.h
@@ -14,8 +14,8 @@ set(aslaclMath_PUBLIC_HEADERS
 	aclMathAlg.h
 )
 
-set(aslaclMath_SOURCES
-	${aslaclMath_PUBLIC_HEADERS}
+set(aslaclmath_SOURCES
+	${aslaclmath_PUBLIC_HEADERS}
 	aclVectorOfElementsDef.cxx
 	aclVectorOfElementsOperations.cxx
 	aclMatrixOfElements.cxx
@@ -26,5 +26,5 @@ set(aslaclMath_SOURCES
 	aclMathAlg.cxx
 )
 
-add_library(aslaclMath ${aslaclMath_SOURCES})
-INSTALL_SUBLIB(aslaclMath aslaclMath_PUBLIC_HEADERS)
+add_library(aslaclmath ${aslaclmath_SOURCES})
+INSTALL_SUBLIB(aslaclmath aslaclmath_PUBLIC_HEADERS)
diff --git a/src/numExtend/CMakeLists.txt b/src/numExtend/CMakeLists.txt
index e766041..2758a48 100644
--- a/src/numExtend/CMakeLists.txt
+++ b/src/numExtend/CMakeLists.txt
@@ -1,16 +1,16 @@
 include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/acl)
 
 
-# aslExt
+# aslnumext
 
-set(aslExt_PUBLIC_HEADERS
+set(aslnumext_PUBLIC_HEADERS
 	aslFDAdvectionDiffusionExtended.h
 )
 
-set(aslExt_SOURCES
-	${aslExt_PUBLIC_HEADERS}
+set(aslnumext_SOURCES
+	${aslnumext_PUBLIC_HEADERS}
 	aslFDAdvectionDiffusionExtended.cxx
 )
 
-add_library(aslExt ${aslExt_SOURCES})
-INSTALL_SUBLIB(aslExt aslExt_PUBLIC_HEADERS)
+add_library(aslnumext ${aslnumext_SOURCES})
+INSTALL_SUBLIB(aslnumext aslnumext_PUBLIC_HEADERS)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/asl.git



More information about the debian-science-commits mailing list