Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Add CMakeJuce build to project
Browse files Browse the repository at this point in the history
  • Loading branch information
nikreiman committed Apr 18, 2015
1 parent d145ed0 commit fddf992
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "Third-Party/TeragonGuiComponents"]
path = Third-Party/TeragonGuiComponents
url = https://github.com/teragonaudio/TeragonGuiComponents.git
[submodule "Builds/CMakeJuce"]
path = Builds/CMakeJuce
url = https://github.com/teragonaudio/CMakeJuce.git
1 change: 1 addition & 0 deletions Builds/CMakeJuce
Submodule CMakeJuce added at 4d2f5c
2 changes: 2 additions & 0 deletions Builds/Linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cmake_minimum_required(VERSION 2.8)
include(../CMakeJuce/juce.cmake)
2 changes: 2 additions & 0 deletions Builds/MacOSX/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cmake_minimum_required(VERSION 2.8)
include(../CMakeJuce/juce.cmake)
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 2.8)
project(BeatCounter)

if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
add_subdirectory(Builds/MacOSX)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
add_subdirectory(Builds/Linux)
endif()

0 comments on commit fddf992

Please sign in to comment.