pthom / hello_imgui

Hello, Dear ImGui: unleash your creativity in app development and prototyping

Home Page:https://pthom.github.io/hello_imgui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

offline build

rexainn opened this issue · comments

How can I change the CMakeLists or any other file to make sure "we don't download dlg from the github"?

I can download the dlg on my own laptop and pass it on the server, but I can't download from "https://github.com/nyorain/dlg.git/" while building hello_imgui.

image

Try to run git submodule update --init manually instead of relying on CMake to do it for you. It seems that cmake fails on https in your case.

Keep me informed, please

The problem is that git submodule update --init not works, because my server can't access github. So I need to manually install on my laptop and pass it on the server. But I don't know where to store dlg in the hello_imgui.

And dlg is the dependency of freetype, it's not in the git submodule

git submodule update --init does not work?

That is the first important issue. Can you clone a anything from github? How did you clone the repository in the first place? May be you are facing a temporary issue with github.
In the meantime -DHELLOIMGUI_USE_FREETYPE=OFF

... but you will likely fail on the next dependency: glfw

Otherwise, for a build without connection, first install the dependencies with vcpkg (you will need to have installed freetype and glfw)

nope...in china, the github need vpn to access, but my server can't set a vpn. So I download everything needed on my own laptop, and pass it on the server through sftp.

So I want to know how can I make all the dependencies from the local dir, and not download again from the github on the server.

Ok, so I need to build entirely freetype and glfw first, then build imgui_bundle, then it will not download them again.

I've built freetype successfully, but when I run pip install -v . for imgui-bundle, it still try to download and build freetype from github.

image

Success on freetype before:

 sudo make install
[sudo] password for gdp:
[100%] Built target freetype
Install the project...
-- Install configuration: ""
-- Installing: /usr/local/include/freetype2
-- Installing: /usr/local/include/freetype2/ft2build.h
-- Installing: /usr/local/include/freetype2/freetype
-- Installing: /usr/local/include/freetype2/freetype/fterrors.h
-- Installing: /usr/local/include/freetype2/freetype/tttables.h
-- Installing: /usr/local/include/freetype2/freetype/ftgzip.h
-- Installing: /usr/local/include/freetype2/freetype/ftoutln.h
-- Installing: /usr/local/include/freetype2/freetype/ftotval.h
-- Installing: /usr/local/include/freetype2/freetype/otsvg.h
-- Installing: /usr/local/include/freetype2/freetype/ftgxval.h
-- Installing: /usr/local/include/freetype2/freetype/ftadvanc.h
-- Installing: /usr/local/include/freetype2/freetype/ftlzw.h
-- Installing: /usr/local/include/freetype2/freetype/fterrdef.h
-- Installing: /usr/local/include/freetype2/freetype/ftstroke.h
-- Installing: /usr/local/include/freetype2/freetype/ftsystem.h
-- Installing: /usr/local/include/freetype2/freetype/ftcolor.h
-- Installing: /usr/local/include/freetype2/freetype/t1tables.h
-- Installing: /usr/local/include/freetype2/freetype/ftmm.h
-- Installing: /usr/local/include/freetype2/freetype/ftbitmap.h
-- Installing: /usr/local/include/freetype2/freetype/freetype.h
-- Installing: /usr/local/include/freetype2/freetype/fttrigon.h
-- Installing: /usr/local/include/freetype2/freetype/ftlist.h
-- Installing: /usr/local/include/freetype2/freetype/config
-- Installing: /usr/local/include/freetype2/freetype/config/public-macros.h
-- Installing: /usr/local/include/freetype2/freetype/config/mac-support.h
-- Installing: /usr/local/include/freetype2/freetype/config/ftheader.h
-- Installing: /usr/local/include/freetype2/freetype/config/ftstdlib.h
-- Installing: /usr/local/include/freetype2/freetype/config/integer-types.h
-- Installing: /usr/local/include/freetype2/freetype/config/ftmodule.h
-- Installing: /usr/local/include/freetype2/freetype/ftsizes.h
-- Installing: /usr/local/include/freetype2/freetype/ftfntfmt.h
-- Installing: /usr/local/include/freetype2/freetype/ftbdf.h
-- Installing: /usr/local/include/freetype2/freetype/ftpfr.h
-- Installing: /usr/local/include/freetype2/freetype/ftsynth.h
-- Installing: /usr/local/include/freetype2/freetype/ftbzip2.h
-- Installing: /usr/local/include/freetype2/freetype/ftparams.h
-- Installing: /usr/local/include/freetype2/freetype/ftmac.h
-- Installing: /usr/local/include/freetype2/freetype/ftrender.h
-- Installing: /usr/local/include/freetype2/freetype/ftchapters.h
-- Installing: /usr/local/include/freetype2/freetype/ftmodapi.h
-- Installing: /usr/local/include/freetype2/freetype/tttags.h
-- Installing: /usr/local/include/freetype2/freetype/ftcid.h
-- Installing: /usr/local/include/freetype2/freetype/ftlogging.h
-- Installing: /usr/local/include/freetype2/freetype/ftwinfnt.h
-- Installing: /usr/local/include/freetype2/freetype/ftgasp.h
-- Installing: /usr/local/include/freetype2/freetype/ftmoderr.h
-- Installing: /usr/local/include/freetype2/freetype/ftcache.h
-- Installing: /usr/local/include/freetype2/freetype/ftlcdfil.h
-- Installing: /usr/local/include/freetype2/freetype/fttypes.h
-- Installing: /usr/local/include/freetype2/freetype/ftglyph.h
-- Installing: /usr/local/include/freetype2/freetype/ttnameid.h
-- Installing: /usr/local/include/freetype2/freetype/ftincrem.h
-- Installing: /usr/local/include/freetype2/freetype/ftimage.h
-- Installing: /usr/local/include/freetype2/freetype/ftbbox.h
-- Installing: /usr/local/include/freetype2/freetype/ftdriver.h
-- Installing: /usr/local/include/freetype2/freetype/ftsnames.h
-- Installing: /usr/local/include/freetype2/freetype/config/ftconfig.h
-- Installing: /usr/local/include/freetype2/freetype/config/ftoption.h
-- Installing: /usr/local/lib/pkgconfig/freetype2.pc
-- Installing: /usr/local/lib/libfreetype.a
-- Installing: /usr/local/lib/cmake/freetype/freetype-config.cmake
-- Installing: /usr/local/lib/cmake/freetype/freetype-config-noconfig.cmake
-- Installing: /usr/local/lib/cmake/freetype/freetype-config-version.cmake

Because it needs a newer version of freetype than the one available with apt-get.

Use vcpkg, or add submodule for freetype and glfw + add_subdirectory for them before adding imgui_bundle

It's the newest version from official: https://github.com/freetype/freetype, I built it from source.

I'm sorry but how can I add submodule + add_subdirectory for imgui_bundle? I think this is the point. I've built the freetype but not in a imgui_bundle known way.

I just understood you are trying to build a pip package, which you did not mention clearly.

There is no easy way to bypass the download for pip building now.

My advice: build a wheel on a machine connected to the internet and use this wheel on your server.