NeuralPi

Raspberry Pi guitar pedal using neural networks to emulate real amps and effects
Log | Files | Refs | Submodules | README

CMakeLists.txt (295B)


      1 juce_add_binary_data(BinaryData SOURCES
      2     logo.png
      3     npi_background.jpg
      4     ../models/BluesJr.json
      5     ../models/TS9.json
      6     ../models/HT40_Overdrive.json
      7 )
      8 
      9 # Need to build BinaryData with -fPIC flag on Linux
     10 set_target_properties(BinaryData PROPERTIES
     11     POSITION_INDEPENDENT_CODE TRUE)