File tree Expand file tree Collapse file tree 12 files changed +22
-18
lines changed
python/libgrass_interface_generator Expand file tree Collapse file tree 12 files changed +22
-18
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ set(ENV{LC_ALL} C)
16
16
set (LIBRARIES )
17
17
foreach (LIB ${LIBS} )
18
18
if (WIN32 )
19
- list (APPEND LIBRARIES "--library=${BIN_DIR} /bin /${LIB} .dll" )
19
+ list (APPEND LIBRARIES "--library=${BIN_DIR} /lib /${LIB} .dll" )
20
20
elseif (APPLE )
21
21
list (APPEND LIBRARIES "--library=${BIN_DIR} /lib/lib${LIB} .so" )
22
22
else ()
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ macro(build_library_in_subdir dir_name)
13
13
#message("dir_name=${dir_name} |g_name= ${g_name}")
14
14
build_module (NAME grass_${g_name} SRCDIR ${CMAKE_CURRENT_SOURCE_DIR} /${dir_name} ${ARGN} )
15
15
endif ()
16
- endmacro ()
16
+ endmacro ()
Original file line number Diff line number Diff line change 5
5
# Read the file COPYING that comes with GRASS for details.
6
6
macro (build_program )
7
7
build_module (${ARGN} EXE )
8
- endmacro ()
8
+ endmacro ()
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ set(${var_major} ${version_major} PARENT_SCOPE)
31
31
set (${var_minor} ${version_minor} PARENT_SCOPE )
32
32
set (${var_release} ${version_release} PARENT_SCOPE )
33
33
set (${var_date} ${version_date} PARENT_SCOPE )
34
- endfunction ()
34
+ endfunction ()
Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ execute_process(
33
33
34
34
set (${version_git_var} "${GRASS_VERSION_GIT} " PARENT_SCOPE )
35
35
36
- endfunction () #repo_status
36
+ endfunction () #repo_status
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ endif()
10
10
set (CMAKE_CXX_FLAGS "${GRASS_CXX_FLAGS} ${CMAKE_CXX_FLAGS} " )
11
11
set (CMAKE_C_FLAGS "${GRASS_C_FLAGS} ${CMAKE_C_FLAGS} " )
12
12
13
- endmacro ()
13
+ endmacro ()
Original file line number Diff line number Diff line change @@ -20,12 +20,15 @@ endforeach()
20
20
foreach (ICON ${GRASS_ICONS} )
21
21
get_filename_component (FILE_NAME ${ICON} NAME )
22
22
add_custom_command (OUTPUT ${GISBASE} /gui/icons/grass/${FILE_NAME}
23
- COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE} /gui/icons/grass/
24
- COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE} /docs/html/icons/ )
23
+ COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE} /gui/icons/grass/ )
25
24
list (APPEND output_icons ${GISBASE} /gui/icons/grass/${FILE_NAME} )
25
+
26
+ add_custom_command (OUTPUT ${GISBASE} /docs/html/icons/${FILE_NAME}
27
+ COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE} /docs/html/icons/ )
26
28
list (APPEND output_icons ${GISBASE} /docs/html/icons/${FILE_NAME} )
27
29
endforeach ()
28
30
31
+
29
32
foreach (ICON ${FLAGS_ICONS} )
30
33
get_filename_component (FILE_NAME ${ICON} NAME )
31
34
add_custom_command (OUTPUT ${GISBASE} /gui/icons/flags/${FILE_NAME}
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ add_custom_target(gui_images
18
18
DEPENDS gui_icons ${output_images} )
19
19
20
20
install (FILES ${GUI_IMAGES} DESTINATION gui/images/ )
21
- install (DIRECTORY basic DESTINATION gui/images/symbols/ )
22
- install (DIRECTORY demo DESTINATION gui/images/symbols/ )
23
- install (DIRECTORY extra DESTINATION gui/images/symbols/ )
24
- install (DIRECTORY geology DESTINATION gui/images/symbols/ )
25
- install (DIRECTORY legend DESTINATION gui/images/symbols/ )
26
- install (DIRECTORY n_arrows DESTINATION gui/images/symbols/ )
21
+ install (DIRECTORY symbols/ basic DESTINATION gui/images/symbols/ )
22
+ install (DIRECTORY symbols/ demo DESTINATION gui/images/symbols/ )
23
+ install (DIRECTORY symbols/ extra DESTINATION gui/images/symbols/ )
24
+ install (DIRECTORY symbols/ geology DESTINATION gui/images/symbols/ )
25
+ install (DIRECTORY symbols/ legend DESTINATION gui/images/symbols/ )
26
+ install (DIRECTORY symbols/ n_arrows DESTINATION gui/images/symbols/ )
Original file line number Diff line number Diff line change @@ -141,10 +141,10 @@ build_library_in_subdir(arraystats DEPENDS grass_gis)
141
141
142
142
if (WITH_OPENGL )
143
143
build_library_in_subdir (ogsf
144
- DEPENDS grass_raster grass_raster3d OPENGL TIFF )
144
+ DEPENDS grass_raster grass_raster3d grass_vector grass_bitmap OPENGL TIFF )
145
145
146
146
build_library_in_subdir (nviz
147
- DEPENDS grass_display grass_raster grass_vector grass_bitmap OPENGL TIFF )
147
+ DEPENDS grass_display grass_raster grass_vector grass_bitmap grass_ogsf OPENGL TIFF )
148
148
endif ()
149
149
150
150
add_subdirectory (temporal )
Original file line number Diff line number Diff line change 1
1
Geographic Resources Analysis Support System (GRASS) is Copyright,
2
2
1999-@GRASS_VERSION_DATE@ by the GRASS Development Team, and licensed under terms of the
3
3
GNU General Public License (GPL) version >=2.
4
-
4
+
5
5
This GRASS GIS @GRASS_VERSION_NUMBER@ release is coordinated and produced by
6
6
the GRASS Development Team with contributions from all over the world.
7
7
You can’t perform that action at this time.
0 commit comments