Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
c97064fc
Commit
c97064fc
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
pp
parent
5d0f856e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+13
-14
13 additions, 14 deletions
CMakeLists.txt
Fltk/FlGui.cpp
+1
-1
1 addition, 1 deletion
Fltk/FlGui.cpp
with
14 additions
and
15 deletions
CMakeLists.txt
+
13
−
14
View file @
c97064fc
...
...
@@ -668,20 +668,18 @@ if(ENABLE_OSMESA)
endif
(
OSMESA_LIB
)
endif
(
ENABLE_OSMESA
)
if
(
HAVE_LUA
)
if
(
ENABLE_READLINE
)
find_library
(
READLINE_LIB readline PATH_SUFFIXES lib
)
if
(
READLINE_LIB
)
find_path
(
READLINE_INC
"readline.h"
PATH_SUFFIXES src readline include
)
if
(
READLINE_INC
)
set
(
HAVE_READLINE TRUE
)
list
(
APPEND CONFIG_OPTIONS
"Readline"
)
list
(
APPEND EXTERNAL_LIBRARIES
${
READLINE_LIB
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
READLINE_INC
}
)
endif
(
READLINE_INC
)
endif
(
READLINE_LIB
)
endif
(
ENABLE_READLINE
)
endif
(
HAVE_LUA
)
if
(
HAVE_LUA AND ENABLE_READLINE
)
find_library
(
READLINE_LIB readline PATH_SUFFIXES lib
)
if
(
READLINE_LIB
)
find_path
(
READLINE_INC
"readline.h"
PATH_SUFFIXES src readline include
)
if
(
READLINE_INC
)
set
(
HAVE_READLINE TRUE
)
list
(
APPEND CONFIG_OPTIONS
"Readline"
)
list
(
APPEND EXTERNAL_LIBRARIES
${
READLINE_LIB
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
READLINE_INC
}
)
endif
(
READLINE_INC
)
endif
(
READLINE_LIB
)
endif
(
HAVE_LUA AND ENABLE_READLINE
)
include
(
CheckFunctionExists
)
check_function_exists
(
vsnprintf HAVE_VSNPRINTF
)
...
...
@@ -704,6 +702,7 @@ endif(NOT SOCKLEN_T_SIZE)
set
(
CMAKE_EXTRA_INCLUDE_FILES
)
if
(
UNIX
)
# do not optimize some files on Unix
file
(
GLOB_RECURSE NON_OPTIMIZED_SRC Common/GmshPredicates.cpp Mesh/BDS.cpp
Parser/Gmsh.tab.cpp contrib/Tetgen*/*.cxx
)
set_source_files_properties
(
${
NON_OPTIMIZED_SRC
}
COMPILE_FLAGS
"-O0"
)
...
...
This diff is collapsed.
Click to expand it.
Fltk/FlGui.cpp
+
1
−
1
View file @
c97064fc
...
...
@@ -231,7 +231,7 @@ FlGui::FlGui(int argc, char **argv)
gmsh32x32
,
32
,
32
));
menu
->
win
->
icon
((
const
char
*
)
XCreateBitmapFromData
(
fl_display
,
DefaultRootWindow
(
fl_display
),
gmsh32x32
,
32
,
32
));
gmsh32x32
,
32
,
32
));
#endif
// open graphic window first for correct non-modal behaviour on
...
...
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