Skip to content

Commit

Permalink
tweaking building args
Browse files Browse the repository at this point in the history
  • Loading branch information
pd3v committed Jul 11, 2024
1 parent 27f5f8e commit d6f6123
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mkdir build
cd build

# Not using JACK
cmake -DCMAKE_BUILD_TYPE=Release -DRTMIDI_API_JACK=OFF -DRTAUDIO_API_JACK=OFF -DRTAUDIO_API_JACK=OFF -DRTMIDI_BUILD_TESTING=OFF ..
cmake -DCMAKE_BUILD_TYPE=Release -DRTMIDI_API_JACK=OFF -DRTMIDI_BUILD_TESTING=OFF ..

# Using JACK
# cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DRTMIDI_BUILD_TESTING=OFF ..
Expand Down
2 changes: 1 addition & 1 deletion build_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd build

# Using ALSA
# cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DRTMIDI_BUILD_TESTING=OFF ..
cmake -DCMAKE_BUILD_TYPE=Release -D__LINUX_ALSA__=ON -DRTMIDI_API_ALSA=ON ..
cmake -DCMAKE_BUILD_TYPE=Release -D__LINUX_ALSA__=ON -DRTMIDI_BUILD_TESTING=OFF ..
# -DBUILD_TESTING=OFF -DRTMIDI_BUILD_TESTING=OFF
make

Expand Down
4 changes: 2 additions & 2 deletions lineparser.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package.cpath = 'externals/?/lib?.dylib;externals/?/lib?.so;/usr/local/lib/lib?.dylib;/usr/local/lib/lib?.so' .. package.cpath
-- package.cpath = '../lib/liblpeg.dylib;/../lib/liblpeg.so;' .. package.cpath
-- print("klsjdfkjsdf", package.cpath)
package.cpath = 'lib/liblpeg.dylib;/lib/liblpeg.so;' .. package.cpath -- hb install placement

local lpeg = require 'lpeg'
local write = io.write
lpeg.locale(lpeg)
Expand Down

0 comments on commit d6f6123

Please sign in to comment.