Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-manias committed Jun 13, 2023
1 parent 7a8b217 commit 0999334
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cmake_policy (SET CMP0082 NEW) # Process install commands in the order that they
# To switch on a custom option use -D, e.g. -DPARASOL_VLOG=ON

option (PARASOL_STATIC "Build framework as a set of static libraries instead of the default modular build." OFF)
option (PARASOL_INSTALL "Create installation targets (chain builders may want to disable this)" ON)
option (PARASOL_INSTALL "Create installation targets" ON)
option (PARASOL_VLOG "Enable verbose log messages in the generated binaries" OFF)
if (UNIX)
option (RUN_ANYWHERE "Build a framework that can run directly from the main folder. Typically used if redefining CMAKE_INSTALL_PREFIX" OFF)
Expand Down
2 changes: 1 addition & 1 deletion examples/play_sound.fluid
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ end

local src = arg('src')
if (src == nil) then
print('Please supply a source audio file with "--src=[file]"')
print('Please supply a source audio file with "src=[file]"')
return
end

Expand Down
4 changes: 2 additions & 2 deletions examples/view_svg.fluid
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[
A simple SVG image viewer

Example: parasol view_svg.fluid --file [Path]
Example: parasol view_svg.fluid file=[Path]
--]]

require 'gui'
Expand All @@ -23,7 +23,7 @@ Example: parasol view_svg.fluid --file [Path]
})

if not arg('file') then
print('Usage: --file [Path]')
print('Usage: file=[Path]')
return
end

Expand Down

0 comments on commit 0999334

Please sign in to comment.