×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

How to build KStars for Windows

  • Posts: 187
  • Thank you received: 28
Thanks for the info.
Is there any way to change the compile to Og option, although I would like to keep ReWithDebInfo?
There are many variables that cannot be Watched by Optimize.

I have installed the " Qt Visual Studio Tools " for debugging Qt.
I can now Watch Qt objects, except for the Optimized variables mentioned above.
8 months 2 weeks ago #94760

Please Log in or Create an account to join the conversation.

A trick I sometimes used is to put the variable you want to inspect as a volatile variable.

example:

QString foo = "hello there";

Then if I can't inspect foo, I'd add this below it.

volatile QString fooWatch = foo;

usually no optimization is done for volatile variables so you can get through with this.
8 months 2 weeks ago #94763

Please Log in or Create an account to join the conversation.

  • Posts: 187
  • Thank you received: 28
Hmmm, I wanted to reduce the impact of Optimize to investigate existing code, not code I wrote myself.
I will look into it to see if there is another way.
8 months 2 weeks ago #94765

Please Log in or Create an account to join the conversation.

  • Posts: 1187
  • Thank you received: 370
For using your own fork, you need
git clone <URL of your clone>
8 months 2 weeks ago #94774

Please Log in or Create an account to join the conversation.

  • Posts: 187
  • Thank you received: 28
"craft --compile kstars" compiles the cloned source code in the default CraftRot/download/git/kde/applications/kstars.
Can you please tell me how to "craft --compile kstars" with the source code forked and cloned for my own work instead of the default source code?
Last edit: 8 months 2 weeks ago by tkakura.
8 months 2 weeks ago #94775

Please Log in or Create an account to join the conversation.

  • Posts: 187
  • Thank you received: 28
I fixed following issue.
"Captures" in Windows EKOS Scheduler does not count up.

Can you check it and merge it into the kstars repository if there are no problems?
8 months 2 weeks ago #94777

Please Log in or Create an account to join the conversation.

Time to create page: 0.841 seconds