Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
fd891280
Commit
fd891280
authored
13 years ago
by
ilor
Browse files
Options
Downloads
Patches
Plain Diff
poliqarp-in-corpus2 sync, bump required version, bump wccl version to 0.0.3
parent
f379b247
Branches
Branches containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
CMakeScripts/FindCorpus2.cmake
+18
-14
18 additions, 14 deletions
CMakeScripts/FindCorpus2.cmake
libwccl/CMakeLists.txt
+2
-2
2 additions, 2 deletions
libwccl/CMakeLists.txt
with
21 additions
and
17 deletions
CMakeLists.txt
+
1
−
1
View file @
fd891280
...
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.0)
...
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.0)
set
(
ver_major
"0"
)
set
(
ver_major
"0"
)
set
(
ver_minor
"0"
)
set
(
ver_minor
"0"
)
set
(
ver_patch
"
2
"
)
set
(
ver_patch
"
3
"
)
# use some of our own Find* scripts
# use some of our own Find* scripts
set
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/CMakeScripts
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/CMakeScripts
)
...
...
This diff is collapsed.
Click to expand it.
CMakeScripts/FindCorpus2.cmake
+
18
−
14
View file @
fd891280
IF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
FIND_PATH
(
Corpus2_INCLUDE_DIR token.h /usr/include/libcorpus2 /usr/local/include/libcorpus2
)
#Already in cache
SET
(
Corpus2_FOUND TRUE
)
ELSE
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
FIND_PATH
(
Corpus2_INCLUDE_DIR libcorpus2/token.h /usr/include /usr/local/include
)
FIND_LIBRARY
(
Corpus2_LIBRARY corpus2 /usr/lib /usr/local/lib
)
MARK_AS_ADVANCED
(
Corpus2_LIBRARY
)
FIND_LIBRARY
(
Corpus2_LIBRARY NAMES corpus2 PATH /usr/lib /usr/local/lib
)
MARK_AS_ADVANCED
(
Corpus2_INCLUDE_DIR
)
FIND_LIBRARY
(
Corpus2Poliqarp_LIBRARY NAMES corpus2poliqarp PATH /usr/lib /usr/local/lib
)
MARK_AS_ADVANCED
(
Corpus2_LIBRARY
)
MARK_AS_ADVANCED
(
Corpus2_INCLUDE_DIR
)
MARK_AS_ADVANCED
(
Corpus2Poliqarp_LIBRARY
)
IF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
SET
(
Corpus2_FOUND TRUE
)
ENDIF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
IF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
SET
(
Corpus2_FOUND TRUE
)
ENDIF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
ENDIF
(
Corpus2_INCLUDE_DIR AND Corpus2_LIBRARY
)
IF
(
Corpus2_FOUND
)
IF
(
Corpus2_FOUND
)
set
(
Corpus2_VERSION 0.0.0
)
set
(
Corpus2_VERSION 0.0.0
)
FIND_FILE
(
_Corpus2_VERSION_FILE libcorpus2/version.h
${
Corpus2_INCLUDE_DIR
}
)
set
(
Corpus2_LIBRARIES
${
Corpus2_LIBRARY
}
)
if
(
Corpus2Poliqarp_LIBRARY
)
set
(
Corpus2_LIBRARIES
${
Corpus2_LIBRARIES
}
${
Corpus2Poliqarp_LIBRARY
}
)
endif
(
Corpus2Poliqarp_LIBRARY
)
FIND_FILE
(
_Corpus2_VERSION_FILE version.h
${
Corpus2_INCLUDE_DIR
}
)
MARK_AS_ADVANCED
(
_Corpus2_VERSION_FILE
)
MARK_AS_ADVANCED
(
_Corpus2_VERSION_FILE
)
IF
(
_Corpus2_VERSION_FILE
)
IF
(
_Corpus2_VERSION_FILE
)
FILE
(
READ
${
_Corpus2_VERSION_FILE
}
_Corpus2_VERSION_CONENTS
)
FILE
(
READ
${
_Corpus2_VERSION_FILE
}
_Corpus2_VERSION_CONENTS
)
...
@@ -38,7 +38,11 @@ IF (Corpus2_FOUND)
...
@@ -38,7 +38,11 @@ IF (Corpus2_FOUND)
ENDIF
(
Corpus2_VERSION VERSION_LESS Corpus2_FIND_VERSION
)
ENDIF
(
Corpus2_VERSION VERSION_LESS Corpus2_FIND_VERSION
)
ENDIF
(
Corpus2_FIND_VERSION
)
ENDIF
(
Corpus2_FIND_VERSION
)
IF
(
NOT Corpus2_FIND_QUIETLY
)
IF
(
NOT Corpus2_FIND_QUIETLY
)
MESSAGE
(
STATUS
"Found libcorpus2
${
Corpus2_VERSION
}
:
${
Corpus2_LIBRARY
}
"
)
IF
(
NOT Corpus2Poliqarp_LIBRARY
)
MESSAGE
(
STATUS
"Found libcorpus2
${
Corpus2_VERSION
}
:
${
Corpus2_LIBRARY
}
"
)
ELSE
()
MESSAGE
(
STATUS
"Found libcorpus2
${
Corpus2_VERSION
}
:
${
Corpus2_LIBRARY
}
with PoliqarpLibrary
${
Corpus2Poliqarp_LIBRARY
}
"
)
ENDIF
(
NOT Corpus2Poliqarp_LIBRARY
)
ENDIF
(
NOT Corpus2_FIND_QUIETLY
)
ENDIF
(
NOT Corpus2_FIND_QUIETLY
)
ELSE
(
Corpus2_FOUND
)
ELSE
(
Corpus2_FOUND
)
IF
(
Corpus2_FIND_REQUIRED
)
IF
(
Corpus2_FIND_REQUIRED
)
...
...
This diff is collapsed.
Click to expand it.
libwccl/CMakeLists.txt
+
2
−
2
View file @
fd891280
...
@@ -4,8 +4,8 @@ PROJECT(wccl)
...
@@ -4,8 +4,8 @@ PROJECT(wccl)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/include/
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/include/
)
find_package
(
Corpus2 1.0.
8
REQUIRED
)
find_package
(
Corpus2 1.0.
9
REQUIRED
)
set
(
LIBS
${
LIBS
}
${
Corpus2_LIBRAR
Y
}
)
set
(
LIBS
${
LIBS
}
${
Corpus2_LIBRAR
IES
}
)
find_package
(
PwrUtils 1.0.1 REQUIRED
)
find_package
(
PwrUtils 1.0.1 REQUIRED
)
set
(
LIBS
${
LIBS
}
${
PwrUtils_LIBRARY
}
)
set
(
LIBS
${
LIBS
}
${
PwrUtils_LIBRARY
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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