u/No-Worldliness-5106

Gemini as an Assistant is an embarrassment.

Basically title.

On pixel 7 pro, let's say I try to call someone, my mom for example.

First it takes twice as long to respond to do something.

Second, for some reason it listens mom as Maugham...

Then when I correct it. It cannot find the contact named "Mom" but finds "friends mom" instead...

The sluggishness comes with almost every task, and half the time it doesn't even find the thing I know it can do but doesn't find it.

Google assistant was 10x better for me atleast

Edit: grammar

reddit.com
u/No-Worldliness-5106 — 2 days ago
▲ 0 r/cmake

Why is CONFIGURE_DEPENDS not working properly with UNIX Makefiles?

I was using a remote development environment using Clion which ssh onto a raspberry pi 5: Debian GNU/Linux 13 (trixie) aarch64 RPIOS Lite from a windows computer

the ssh works, Directory structure:

https://preview.redd.it/a2fdamk3f50h1.png?width=336&format=png&auto=webp&s=c5e0cf2be775a5c7f57e1978a6889ee35b7f4c86

the problem comes when I use GLOB

cmake_minimum_required(VERSION 3.31.4)

project(custom_stack)

set(HEADER_DIR include)
file(GLOB headers "${HEADER_DIR}/*.h")
file(GLOB sources "src/*.c")

add_library(custom STATIC ${sources} ${headers})

target_compile_options(custom PRIVATE -Wall -Wextra)

target_include_directories(custom PUBLIC "${HEADER_DIR}")

add_executable(${CMAKE_PROJECT_NAME} main.c)

target_compile_options(${CMAKE_PROJECT_NAME} PRIVATE -Wall -Wextra)

target_link_libraries(${CMAKE_PROJECT_NAME} custom)

Not the best practice, I know! but this works with success

but when I add:

cmake_minimum_required(VERSION 3.31.4)

project(custom_stack)

set(HEADER_DIR include)
file(GLOB CONFIGURE_DEPENDS headers "${HEADER_DIR}/*.h")
file(GLOB CONFIGURE_DEPENDS sources "src/*.c")

add_library(custom STATIC ${sources} ${headers})

target_compile_options(custom PRIVATE -Wall -Wextra)

target_include_directories(custom PUBLIC "${HEADER_DIR}")

add_executable(${CMAKE_PROJECT_NAME} main.c)

target_compile_options(${CMAKE_PROJECT_NAME} PRIVATE -Wall -Wextra)

target_link_libraries(${CMAKE_PROJECT_NAME} custom)

it fails by not finding any source files? why?

https://preview.redd.it/mawrpabaf50h1.png?width=1332&format=png&auto=webp&s=882ee4448bd4b3c6077c047d60a440738039aaf2

reddit.com
u/No-Worldliness-5106 — 6 days ago