Compare commits

...

35 Commits

Author SHA1 Message Date
Kolan Sh 0f4311456b Submodules updated 2020-04-29 12:29:51 +03:00
Kolan Sh c7b4f5d2d8 CPack: 3 dlls added. 2019-06-04 11:40:09 +03:00
Kolan Sh 70786bdd16 build{32,64}.sh added 2019-06-03 19:02:52 +03:00
Kolan Sh d35d5a6846 Submodules updated 2019-06-03 12:07:26 +03:00
Kolan Sh 5e69bfb381 Submodules updated 2019-05-16 13:00:46 +03:00
Kolan Sh 274859dcfd Submodules updated 2019-05-15 14:40:40 +03:00
Kolan Sh fbedca3846 Merge branch 'master' into insys 2019-05-15 14:40:21 +03:00
Kolan Sh 9096a34b30 Submodules updated. 2018-06-25 13:48:18 +03:00
Kolan Sh ceeee0c6fd Submodules updated. 2018-06-25 12:38:56 +03:00
Kolan Sh 85f00a43c2 Submodules updated. 2018-06-22 14:35:10 +03:00
Kolan Sh a85f5fc3fa Submodules updated. 2018-06-22 12:10:22 +03:00
Kolan Sh 2184f8543d Submodules updated. 2018-06-22 12:07:58 +03:00
Kolan Sh e873a15136 Submodules updated. 2018-06-22 12:01:46 +03:00
Kolan Sh cc5618034c Submodules updated. 2018-06-22 11:16:57 +03:00
Kolan Sh 8007e5e3d5 Submodules updated. 2018-06-22 11:15:40 +03:00
Kolan Sh a29ee76e60 Submodules updated. 2018-06-22 10:47:20 +03:00
Kolan Sh 0ba41dbe9c Submodules updated. 2018-06-21 18:39:13 +03:00
Kolan Sh 4918175db3 Submodules updated. 2018-06-21 18:07:56 +03:00
Kolan Sh c7d1545615 In progress... 2018-06-21 11:55:54 +03:00
Kolan Sh c8c3623ad0 Submodules updated. 2018-06-20 17:31:59 +03:00
Kolan Sh 47caf0b18f libgxml-0.16-1.0.0 added 2018-06-20 17:22:38 +03:00
Kolan Sh 0cc1dbd5fc libfribidi-0.dll added 2018-06-20 16:48:36 +03:00
Kolan Sh afe3d696e5 Merge branch 'insys' of git.insysltd.org:kolan/LAview.win32-bundle into insys 2018-06-20 13:30:55 +03:00
Kolan Sh c8fddc2999 Submodules updated. 2018-06-20 16:25:05 +03:00
Kolan Sh 4f13fd3d6e Submodules updated. 2018-06-20 16:19:57 +03:00
Kolan Sh 7544f32d55 Submodules updated. 2018-06-20 16:12:27 +03:00
Kolan Sh a68bee8a96 Submodules updated. 2018-06-20 16:08:27 +03:00
Kolan Sh 6ada6576c4 Submodules updated. 2018-06-20 15:50:33 +03:00
Kolan Sh 1dbf067064 Submodules updated. 2018-06-20 15:12:06 +03:00
Kolan Sh 6ee24467db submodules URLs updated. 2018-06-20 14:56:44 +03:00
Kolan Sh 79a3d0338b submodules URLs updated. 2018-06-20 14:26:08 +03:00
Kolan Sh b97eeafa0c Submodules updated. 2018-06-20 13:30:48 +03:00
Kolan Sh 96a1d23054 In progress... 2018-06-20 08:50:21 +03:00
Kolan Sh 2230e8fd46 Merge branch 'master' into insys 2018-06-20 11:29:18 +03:00
Kolan Sh ade1b4bbb8 InSys submodules added. 2018-06-20 11:23:12 +03:00
17 changed files with 59 additions and 12 deletions

15
.gitmodules vendored
View File

@ -22,3 +22,18 @@
[submodule "cairo-chart"]
path = cairo-chart
url = git@git.backbone.ws:kolan/Cairo-Chart.git
[submodule "table_meas"]
path = table_meas
url = git@git.insysltd.org:kolan/LAview.Object.TableMeas.git
[submodule "control_point"]
path = control_point
url = git@git.insysltd.org:kolan/LAview.Data.ControlPoint.git
[submodule "stand_config"]
path = stand_config
url = git@git.insysltd.org:kolan/LAview.Data.StandConfig.git
[submodule "laview-templates"]
path = laview-templates
url = git@git.insysltd.org:kolan/LAview.Templates.git
[submodule "config-xml"]
path = config-xml
url = git@git.insysltd.org:InSysLtd/config-xml.git

View File

@ -70,8 +70,29 @@ ExternalProject_Add (cairo-chart
INSTALL_DIR bundle
)
ExternalProject_Add (table_meas
SOURCE_DIR ${CMAKE_SOURCE_DIR}/table_meas
#CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=bundle
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_BINARY_DIR}/bundle
# PREFIX table_meas
INSTALL_DIR bundle
)
ExternalProject_Add (control_point
SOURCE_DIR ${CMAKE_SOURCE_DIR}/control_point
#CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=bundle
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_BINARY_DIR}/bundle
# PREFIX control_point
INSTALL_DIR bundle
)
ExternalProject_Add (stand_config
SOURCE_DIR ${CMAKE_SOURCE_DIR}/stand_config
#CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=bundle
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_BINARY_DIR}/bundle
# PREFIX stand_config
INSTALL_DIR bundle
)

3
build32.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
for d in cairo-chart gobject-plugin latex-struct core data-example object-example stand_config control_point desktop table_meas; do cd $d && mkdir -p build-mingw32 && cd build-mingw32 && rm -rf * && cmake -G "MSYS Makefiles" .. -DCMAKE_BUILD_TYPE=Release && make && cpack && ./*.exe && cd ../.. || break; done

3
build64.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
for d in cairo-chart gobject-plugin latex-struct core data-example object-example stand_config control_point desktop table_meas; do cd $d && mkdir -p build-mingw64 && cd build-mingw64 && rm -rf * && cmake -G "MSYS Makefiles" .. -DCMAKE_BUILD_TYPE=Release && make && cpack && ./*.exe && cd ../.. || break; done

@ -1 +1 @@
Subproject commit a9d77c1109221457ac0d0d168263a7516402f854
Subproject commit 7748a11de4823d36236f3456144434c63f3285a0

1
config-xml Submodule

@ -0,0 +1 @@
Subproject commit b11e6e775bbdfecb8ed23df7bd75eb25973d1a7c

1
control_point Submodule

@ -0,0 +1 @@
Subproject commit f40ed06c9aec2b58f45d45a6bb4e2cdf0cdcd63a

2
core

@ -1 +1 @@
Subproject commit 0895e89413b114fd945d06f7b2f5a9b4d8cc5446
Subproject commit 3e214e8234d6cc80dd73a06b7bf7004683b3767d

View File

@ -19,15 +19,15 @@ SET (CPACK_CREATE_DESKTOP_LINKS "..\\\\win${ARCH}\\\\bundle\\\\bin\\\\laview-des
FILE (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bundle/bin)
FOREACH (binname gspawn-win${ARCH}-helper.exe perl.exe perl522.dll
libatk-1.0-0.dll libbz2-1.dll libcairo-2.dll libcairo-gobject-2.dll
libcroco-0.6-3.dll libepoxy-0.dll
libexpat-1.dll libffi-6.dll libfontconfig-1.dll libfreetype-6.dll
libcroco-0.6-3.dll libdatrie-1.dll libepoxy-0.dll
libexpat-1.dll libffi-6.dll libfontconfig-1.dll libfreetype-6.dll libfribidi-0.dll
libgcc_s_seh-1.dll libgcc_s_dw2-1.dll
libgdk_pixbuf-2.0-0.dll libgdk-3-0.dll libgee-0.8-2.dll libgio-2.0-0.dll libglib-2.0-0.dll
libgmodule-2.0-0.dll libgobject-2.0-0.dll libgraphite2.dll libgtk-3-0.dll libharfbuzz-0.dll
libgmodule-2.0-0.dll libgobject-2.0-0.dll libgraphite2.dll libgtk-3-0.dll libgxml-0.16-1.0.0.dll libharfbuzz-0.dll
libiconv-2.dll libintl-8.dll liblzma-5.dll libpango-1.0-0.dll libpangocairo-1.0-0.dll libpangoft2-1.0-0.dll
libpangowin32-1.0-0.dll libpcre-1.dll libpixman-1-0.dll
libpng16-16.dll librsvg-2-2.dll libstdc++-6.dll
libwinpthread-1.dll libxml2-2.dll zlib1.dll)
libpng16-16.dll librsvg-2-2.dll libstdc++-6.dll libthai-0.dll
libwinpthread-1.dll libxml2-2.dll perl528.dll zlib1.dll)
EXECUTE_PROCESS (COMMAND cp /mingw${ARCH}/bin/${binname} ${CMAKE_BINARY_DIR}/bundle/bin)
ENDFOREACH (binname)

@ -1 +1 @@
Subproject commit 6f4a4f1a5738b40e0668924ca51084d0fae9e6f2
Subproject commit 945c110a472deacbba997b7d72dd7512b0eba5cb

@ -1 +1 @@
Subproject commit 5e989b2bac920dac0bd36bd8177724468c0a69de
Subproject commit fa03fc7190788634c270d0e6c0734c0bf92946b9

@ -1 +1 @@
Subproject commit f9fea4fe13189c4501b86832d4affbf5e4646c9b
Subproject commit e73cf2d921b4249d320d113dd0ffdb666caca853

@ -1 +1 @@
Subproject commit 7f9b2714375d454c8cebde7586408fa6fd984cdc
Subproject commit fd585f9749b0d8f700554b42d23895c88ae76424

1
laview-templates Submodule

@ -0,0 +1 @@
Subproject commit c2b834516448dda04d7e70709b3ac09f7e70ed3e

@ -1 +1 @@
Subproject commit 0abb967086b5ca6c3699f0abee35ecb858dad44e
Subproject commit 8faee221d77e24b3e431507c287915a7e67bcdf0

1
stand_config Submodule

@ -0,0 +1 @@
Subproject commit 8e61eb2816aa4a4a5afd3d70121724692ded106d

1
table_meas Submodule

@ -0,0 +1 @@
Subproject commit 00c3ee739d5d6417ccda55d9e47703f18f237ac8