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
5ecfa9da
Commit
5ecfa9da
authored
11 years ago
by
Radosław Warzocha
Browse files
Options
Downloads
Patches
Plain Diff
ANTLR linking problem solution (#5297)
parent
58310ac5
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeScripts/FindANTLR.cmake
+1
-1
1 addition, 1 deletion
CMakeScripts/FindANTLR.cmake
libwccl/CMakeLists.txt
+1
-4
1 addition, 4 deletions
libwccl/CMakeLists.txt
with
2 additions
and
5 deletions
CMakeScripts/FindANTLR.cmake
+
1
−
1
View file @
5ecfa9da
...
...
@@ -21,7 +21,7 @@ else (ANTLR_INCLUDE_DIR AND ANTLR_LIBRARY)
# Look for the library.
find_library
(
ANTLR_LIBRARY
NAMES antlr
NAMES antlr
-pic
DOC
"Library to link against for ANTLR"
)
mark_as_advanced
(
ANTLR_LIBRARY
)
...
...
This diff is collapsed.
Click to expand it.
libwccl/CMakeLists.txt
+
1
−
4
View file @
5ecfa9da
...
...
@@ -24,10 +24,8 @@ set(LIBS ${LIBS} ${ICU_LIBRARIES} ${ICU_I18N_LIBRARIES})
find_package
(
ANTLR REQUIRED
)
include_directories
(
${
ANTLR_INCLUDE_DIR
}
)
if
(
WIN32
)
# On UNIX this should be included only in final executables
set
(
LIBS
${
LIBS
}
${
ANTLR_LIBRARY
}
)
endif
(
WIN32
)
set
(
LIBS
${
LIBS
}
${
ANTLR_LIBRARY
}
)
SET
(
libwccl_STAT_SRC
exception.cpp
...
...
@@ -186,4 +184,3 @@ set_target_properties(wccl PROPERTIES
PATTERN
"build"
EXCLUDE
PATTERN
"CMake*"
EXCLUDE
)
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