-
-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Install script for directory: /Users/bobo/dev/projectm/src/projectM-sdl | ||
|
||
# Set the install prefix | ||
if(NOT DEFINED CMAKE_INSTALL_PREFIX) | ||
set(CMAKE_INSTALL_PREFIX "/usr/local") | ||
endif() | ||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") | ||
|
||
# Set the install configuration name. | ||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) | ||
if(BUILD_TYPE) | ||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" | ||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") | ||
else() | ||
set(CMAKE_INSTALL_CONFIG_NAME "") | ||
endif() | ||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") | ||
endif() | ||
|
||
# Set the component getting installed. | ||
if(NOT CMAKE_INSTALL_COMPONENT) | ||
if(COMPONENT) | ||
message(STATUS "Install component: \"${COMPONENT}\"") | ||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") | ||
else() | ||
set(CMAKE_INSTALL_COMPONENT) | ||
endif() | ||
endif() | ||
|