project_options icon indicating copy to clipboard operation
project_options copied to clipboard

A general-purpose CMake library that provides functions that improve the CMake experience following the best practices.

Results 38 project_options issues
Sort by recently updated
recently updated
newest added

Update to the latest available version to overcome some windows related problems during build.

blocked

Imported targets that include prebuilt libraries cannot be installed using `package_project` now. This tries to fix the issue ## How to test Try to import an externally built library and...

enhancement
blocked

I'm trying to use `target_find_dependencies` to add the dependencies for a `STATIC` library that depends on some libraries that can be found via `pkg-config`, I'm able to pass the `PkgConfig`...

When using `target_link_system_libraries`, sometimes the packages provide both `optimized` and `debug` targets. However, when using ```cmake target_link_system_libraries(main PRIVATE ${FOUND_LIBRARIES}) ``` It does not work since the separate `optimized`/`debug` values are...

bug

Bincrafter's Conan repo is down (again). Is there any way to disable or remove this remote from (within) the CMakelists file? See also #210 or https://github.com/bincrafters/community/issues/1454 ``` #19 1.240 --...

bug

I'm trying to use clang-cl instead of msvc and I'm getting a warning (as error): 'argument unused during compilation: '-O0'' If I comment 'ENABLE_COVERAGE', the warning disappear. (and the argument...

bug

fix #259 by using generator expressions and `CMAKE_INTERPROCEDURAL_OPTIMIZATION_`.

Currently the project determine whether to enable some hardening options and LTO based on `CMAKE_BUILD_TYPE`, which is not set (and impossible to set) when a multi-configuration generator is used. https://github.com/aminya/project_options/blob/46081b21083cccf6a3be6bc8b73d3f6b39eb4964/src/Hardening.cmake#L47...