Borucki Andrzej

- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 6
-
Borucki Andrzej created a post, AnsweredHow to use ninja build
I want call ninja build from CLion or call make from CLion and ninja from command line. I set clion_build as directory, but in this directory is only clion_build/CMakeFiles/clion-log.txt and ALL ... -
Borucki Andrzej commented, -
Borucki Andrzej created a post, AnsweredControl + mouse go to only declaration not definition
If I press control + mouse I can go to method declaration in *.h; If I am in *.h control + mouse not works and I can't go to definition. I think, previously it works... -
Borucki Andrzej commented, -
Borucki Andrzej created a post, AnsweredHow to rebuild only changed files?
I have average size project. I do small change in main.cpp and do run/build CLion call cmake to rebuild all. Note: cmake alone can rebuild only changed files if exists compiled obj -
Borucki Andrzej commented, -
Borucki Andrzej created a post, CompletedHow to show standard output?
I have console program with printf to stdout or cout<<string Hot to show output? Terminal (ALt+F12) is interactive and program not write to it. -
Borucki Andrzej created a post, AnsweredCMAKE with parameter
I have cmake with parameter: if (${USE} STREQUAL 0) add_definitions(-DUSE=0) set(BIN_NAME bit-block) set(BITHASH_DIR ${CMAKE_CURRENT_SOURCE_DIR}/bithash)endif()if (${USE} STREQUAL 1) add_defin... -
Borucki Andrzej created a post, AnsweredI need main() method generation
I created new project, new class (Main.java) and must write " public static void main(String[] args){} " It will be good if will possible generation main method by IDE.