I am having strange problem with making/applying changes of the Domoticz source code. I am able to compile the code. I am able even to change some web server files like hardware.js and hardware.html and i can see the changes are applied after browser refresh. However if i make some changes to lets say DenkoviDevices.cpp or DenkoviDevices.h, these changes are not applied anyway (even if I restart domoticz or even the whole OS).
I am following this link for the setup: https://www.domoticz.com/wiki/Build_Dom ... rom_source
I have the following setup:
OS: Ubuntu 18.04 (clean install on virtual machine vmware)
Cmake: 3.17.0
Folder home/ubuntu/domoitcz is the folder with downloaded official domoitcz
Folder home/ubuntu/dev-domoticz is the folder with compiled source code
I get the source via:
Code: Select all
cd dev-domoticz
git pull (for first time only)
and save all.
After that, i use the command to compile:
Code: Select all
cd dev-domoticz
cmake -DCMAKE_BUILD_TYPE=Release CMakeLists.txt -DUSE_OPENSSL_STATIC="NO"
make
Code: Select all
cd domoticz sudo ./domoticz
Do I need to transfer some files/folders from dev-domoticz to domoticz dir and if so which ?
Thank you in advance!