Question / Help Can not build in Xcode after add QtNetwork

pengxu

New Member
I used QtNetwork in OBS and added it to the cmakelist file under UI folder
```
find_package(Qt5Network REQUIRED)

target_link_libraries(obs
libobs
Qt5::Widgets
Qt5::Network
obs-frontend-api
${FFMPEG_LIBRARIES}
${LIBCURL_LIBRARIES}
${obs_PLATFORM_LIBRARIES})
```

but after I build it for xcode following the Guid
I get the following error at step 5
```
'QtNetwork' file not found
```

## Expected Behavior
Hope it can still be compiled in xcode after import qtnetwork
 
Probably better to post this in the Development forum, this forum is for users with operational problems/questions.

 
Back
Top