SpaceIm
SpaceIm
`tlx.dll` is not installed on Windows when we build shared lib here is a patch: ```patch --- a/tlx/CMakeLists.txt +++ b/tlx/CMakeLists.txt @@ -86,6 +86,7 @@ if(TLX_BUILD_SHARED_LIBS) install(TARGETS tlx EXPORT tlx-targets COMPONENT...
patch version is greater than 1023, the linker of AppleClang doesn't allow such big value: ``` [100%] Linking CXX shared library ../../lib/libtlx.dylib ld: malformed 64-bit a.b.c.d.e version number: 0.5.20200222 clang:...
`cddlib` initializes global variables in a function, which is not valid C AFAIK. On macOS, with apple-clang, cddlib static will fail to link to an executable: ``` Undefined symbols for...
public headers are not self-contained. `cdd.h` lacks `stdio.h` for `FILE` `cddtypes.h` lacks `cddmp.h` and `setoper.h` generated `cddtypes_f.h` lacks `cddmp_f.h` and `setoper.h` You can try a simple test program which only...
Would it be possible to create a new release please? The last one, 0.98.1, is very old (6 years) and broken with Visual Studio (2019 at least).
In https://docs.conan.io/en/1.51/reference/conanfile/tools/env/envvars.html#creating-environment-files, it is explained how to aggregate calls of scripts in `conanbuild` script with `scope="build"`, or in `conanrun` script with `scope="run"`. Actually in https://github.com/conan-io/conan-center-index/pull/12598, I wanted to inject some...
Several functions & classes exposed in `conan.tools` are not documented: `conan.tools.build.valid_min_cppstd` (available since conan 1.50.0) `conan.tools.cmake.CMakeFileAPI` (available since conan 1.39.0) `conan.tools.files.collect_libs` (available since conan 1.46.0) `conan.tools.files.CppPackage` (available since conan 1.39.0)...
Indeed, I've tested during migration of a recipe to conan v2 to pass a `CMAKE_POLICY_DEFAULT_CMP` with `variables` and it was just ignored by CMake. I had to use `cache_variables`. So...
`conan install` and `conan create` documentation provide informations about order of execution of `ConanFile` methods: https://docs.conan.io/en/latest/reference/commands/consumer/install.html https://docs.conan.io/en/latest/reference/commands/creator/create.html The new method `validate()` added in 1.32.0 is missing.
The file created during export of targets should be included in config file, otherwise it's completely useless. Currently, a downstream project can't link imported target `PlayRho` (or `PlayRho_shared`) after a...