Skip to content

Commit

Permalink
Use lowercase rather than uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth committed Aug 20, 2023
1 parent f86500e commit e43bb5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ ADD_SUBDIRECTORY(hiir)
ADD_SUBDIRECTORY(rpmalloc)
ADD_SUBDIRECTORY(weakjack)

IF(MINGW)
OPTION(MINGW_STDTHREADS_GENERATE_STDHEADERS "" ON)
ADD_SUBDIRECTORY(mingw-std-threads)
SET(LMMS_USE_MINGW_STD_THREADS ON PARENT_SCOPE)
ENDIF()
if(MINGW)
option(MINGW_STDTHREADS_GENERATE_STDHEADERS "" ON)
add_subdirectory(mingw-std-threads)
set(LMMS_USE_MINGW_STD_THREADS ON PARENT_SCOPE)
endif()

# The lockless ring buffer library is compiled as part of the core
SET(RINGBUFFER_DIR "${CMAKE_SOURCE_DIR}/src/3rdparty/ringbuffer/")
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ if(LMMS_HAVE_MP3LAME)
list(APPEND EXTRA_LIBRARIES mp3lame::mp3lame)
endif()

IF(LMMS_USE_MINGW_STD_THREADS)
if(LMMS_USE_MINGW_STD_THREADS)
list(APPEND EXTRA_LIBRARIES mingw_stdthreads)
ENDIF()
endif()

SET(LMMS_REQUIRED_LIBS ${LMMS_REQUIRED_LIBS}
${CMAKE_THREAD_LIBS_INIT}
Expand Down

0 comments on commit e43bb5f

Please sign in to comment.