Alain Martin

Results 44 comments of Alain Martin

@kf6kjg thanks for joining the conversation! I don't mind adding an option to `Jucer2Reprojucer` so it writes ```cmake include("${CMAKE_BINARY_DIR}/conanbuildinfo.cmake") conan_basic_setup(TARGETS) ``` at the top of the generated `CMakeLists.txt` file. However,...

I think that is a great idea! There should be some template `CMakeLists.txt` files, or something similar to the "Create New Project" wizard in Projucer.

Hi @Xav83, Sorry for the late reply. Everything is going fine for me, and I hope the same for you and the @Expressivee team! I have planned for quite some...

I reworded the title of this issue since Jucer2Reprojucer was deprecated in favor of Jucer2CMake in https://github.com/McMartin/FRUT/pull/645, then removed in https://github.com/McMartin/FRUT/pull/701.

I'm getting the same issue. I think it is due to the fact that VS runs the frontend (c1xx) on all files before running the backend (c2) on them, while...

Hi @jackfruit2, Thanks for using FRUT! Could you please give me some examples of strings and/or function names that you found in the binary, though you didn't expect them there?...

Hi @rdv00, Thanks a lot for using FRUT and opening this issue. The "Getting Started" instructions (https://github.com/McMartin/FRUT#getting-started) show how to build FRUT using CMake on the command line: ``` cmake...

Hi @JoseDiazRohena, Thanks for using FRUT! FRUT indeed requires CMake 3.4 (which was released in November 2015), or a later version. The last version of CMake (3.25.1 as you found...

It seems that Projucer is fine with non-integers values in the project version because it uses `juce::String::getIntValue`, which returns the first integer in the string and ignores anything afterwards. This...

The first issue I can see is that there is a typo in `foo.h`. There is a colon character missing after the `linuxLibs` key: ```diff --- a/modules/foo/foo.h +++ b/modules/foo/foo.h @@...