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
github.com
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
```
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
Create new page · obsproject/obs-studio Wiki
OBS Studio - Free and open source software for live streaming and screen recording - Create new page · obsproject/obs-studio Wiki
```
'QtNetwork' file not found
```
## Expected Behavior
Hope it can still be compiled in xcode after import qtnetwork