Skip to main content
0 votes
0 answers
193 views

I'm trying to put together a small utility for computing a tetrahedralization of a mesh (https://github.com/blackears/cyclops_tetrahedralizer). Since I want this to be open source, I thought it would ...
kitfox's user avatar
  • 5,678
2 votes
1 answer
134 views

I'm trying to configure a project of mine involving CUDA, like so: cmake \ -DCMAKE_CUDA_ARCHITECTURES=61 \ -DCMAKE_BUILD_TYPE=Release \ -DCUDAToolkit_ROOT=/usr/local/cuda-11.6 \ -DCMAKE_CUDA_COMPILER=/...
einpoklum's user avatar
  • 138k
4 votes
0 answers
150 views

There's an implementation of the foo module that uses only the standard library: module; #include <iostream> export module foo; export void foo() { std::cout << "foo" <&...
d7d1cd's user avatar
  • 561
0 votes
0 answers
141 views

I'm having some trouble compiling programs using the opencv 4.13 libs that I manually compiled and installed. Particularly, the problem seems to be in the functions: cv::cvtColor cv::putText cv::...
Nelson's user avatar
  • 73
1 vote
1 answer
94 views

I'm on RHEL8, and a while back, I used to have no issues. At some point something about the system changed and I started having issues with slow CMake generation times, which eclipsed my compile ...
Krupip's user avatar
  • 5,396
0 votes
0 answers
134 views

I encountered this error when trying to compile a Gtest application using MinGW on Windows: [build] D:/MinGW/bin/../lib/gcc/x86_64-w64-mingw32/14.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: D:/...
TN-mo's user avatar
  • 1
-1 votes
1 answer
81 views

I'm having some problems compiling a simple piece of code. I'm just starting to use cmake (before I only used handcrafted Makefile) and compiling this piece of code in my PC works normally. Code: #...
Nelson's user avatar
  • 73
0 votes
1 answer
48 views

While refactoring some legacy code I ran into some strange behaviour of CMake+GCC that I can not explain or correct. This is what I have: Debian Trixie with GCC 14.2.0 and CMake 3.31.6 A test project ...
PapaAtHome's user avatar
-3 votes
1 answer
75 views

I’m trying to build bgfx using CMake, but I’m not sure whether this is officially supported or what the correct workflow is. From what I understand, bgfx primarily uses GENie to generate project files,...
Humoyun Mirzo's user avatar
0 votes
0 answers
59 views

I've read this question: How do I tell CMake to output the package search paths? and can now more easily debug package searches. However, I'm searching for a certain package using pkg-config, e.g.: ...
einpoklum's user avatar
  • 138k
0 votes
0 answers
81 views

This is my first time using CLion and it found the toolset for Cygwin and MingGW, but not for Visual Studio. I've used and can still use Visual Studio 2019 and 2026 and for C++ development with no ...
Tryston Freeman's user avatar
1 vote
1 answer
44 views

In a project I'm working on, I need to determine which libc is being used, for reasons. I know that, on current Linux systems, I can usually write: $(gcc --print-library=libc.so.6) | head -1 and get ...
einpoklum's user avatar
  • 138k
0 votes
0 answers
90 views

I am trying to build my project dependencies (gRPC and Boost) using vcpkg with AddressSanitizer (ASan) enabled on Windows. To achieve this, I created a custom triplet named x64-windows-asan.cmake. ...
İsa Yurdagül's user avatar
1 vote
0 answers
58 views

I'm trying to create an Android build for a native (C) library (https://github.com/MayaPosch/nymphrpc). This library has itself a dependency on another C library, Poco (https://github.com/pocoproject/...
PureTryOut's user avatar
1 vote
1 answer
42 views

Here is a piece of cmake code: macro(my_macro p) message("--my_macro--") message("p is: ${p}") if(p) # <========================= (1) message("\"if(...
SZYoo's user avatar
  • 518

15 30 50 per page