Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
2ab083d8
Commit
2ab083d8
authored
15 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1310: Added FindBlitz.cmake; added some extra include file checks in LofarGeneral.cmake
parent
c0396981
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitattributes
+1
-0
1 addition, 0 deletions
.gitattributes
CMake/FindBlitz.cmake
+45
-0
45 additions, 0 deletions
CMake/FindBlitz.cmake
CMake/FindPQXX.cmake
+1
-2
1 addition, 2 deletions
CMake/FindPQXX.cmake
CMake/LofarGeneral.cmake
+2
-0
2 additions, 0 deletions
CMake/LofarGeneral.cmake
with
49 additions
and
2 deletions
.gitattributes
+
1
−
0
View file @
2ab083d8
...
...
@@ -160,6 +160,7 @@ CEP/ParmDB/test/tsetupsourcedb.in_ms2.vds -text
CEP/Pipeline/bootstrap -text
CEP/Pipeline/library/lioff.clusterdesc -text
CEP/Pipeline/library/makevds.bash -text
CMake/FindBlitz.cmake -text
CMake/makeversion -text
CMake/variants/variants.bgfen0 -text
CMake/variants/variants.rs002 -text
...
...
This diff is collapsed.
Click to expand it.
CMake/FindBlitz.cmake
0 → 100644
+
45
−
0
View file @
2ab083d8
# $Id: FindBLITZ.cmake 13414 2009-06-16 22:15:37Z loose $
#
# Copyright (C) 2008-2009
# ASTRON (Netherlands Foundation for Research in Astronomy)
# P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Try to find Blitz: a C++ template class library for scientific computing
#
# This will define:
#
# BLITZ_FOUND - system has Blitz
# BLITZ_INCLUDE_DIR - the Blitz include directory (cached)
# BLITZ_INCLUDE_DIRS - the Blitz include directories
# (identical to BLITZ_INCLUDE_DIR)
# BLITZ_LIBRARY - the Blitz library (cached)
# BLITZ_LIBRARIES - the Blitz libraries
# (identical to BLITZ_LIBRARY)
if
(
NOT BLITZ_FOUND
)
find_path
(
BLITZ_INCLUDE_DIR blitz/blitz.h
)
find_library
(
BLITZ_LIBRARY blitz
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
Blitz DEFAULT_MSG
BLITZ_LIBRARY BLITZ_INCLUDE_DIR
)
set
(
BLITZ_INCLUDE_DIRS
${
BLITZ_INCLUDE_DIR
}
)
set
(
BLITZ_LIBRARIES
${
BLITZ_LIBRARY
}
)
endif
(
NOT BLITZ_FOUND
)
This diff is collapsed.
Click to expand it.
CMake/FindPQXX.cmake
+
1
−
2
View file @
2ab083d8
...
...
@@ -37,8 +37,7 @@ if(NOT PQXX_FOUND)
find_library
(
PQ_LIBRARY pq
)
include
(
FindPackageHandleStandardArgs
)
set
(
custom_msg
"Could NOT find PQXX in
${
CMAKE_PREFIX_PATH
}
"
)
find_package_handle_standard_args
(
PQXX
"
${
custom_msg
}
"
find_package_handle_standard_args
(
PQXX DEFAULT_MSG
PQXX_LIBRARY PQ_LIBRARY PQXX_INCLUDE_DIR
)
set
(
PQXX_INCLUDE_DIRS
${
PQXX_INCLUDE_DIR
}
)
...
...
This diff is collapsed.
Click to expand it.
CMake/LofarGeneral.cmake
+
2
−
0
View file @
2ab083d8
...
...
@@ -60,9 +60,11 @@ if(NOT DEFINED LOFAR_GENERAL_INCLUDED)
check_include_file
(
stdlib.h HAVE_STDLIB_H
)
check_include_file
(
string.h HAVE_STRING_H
)
check_include_file
(
strings.h HAVE_STRINGS_H
)
check_include_file
(
sys/mman.h HAVE_SYS_MMAN_H
)
check_include_file
(
sys/resource.h HAVE_SYS_RESOURCE_H
)
check_include_file
(
sys/stat.h HAVE_SYS_STAT_H
)
check_include_file
(
sys/time.h HAVE_SYS_TIME_H
)
check_include_file
(
sys/timepps.h HAVE_SYS_TIMEPPS_H
)
check_include_file
(
sys/types.h HAVE_SYS_TYPES_H
)
check_include_file
(
unistd.h HAVE_UNISTD_H
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment