Skip to content

Commit a7a53a4

Browse files
committed
native preset linking, Cg linking on OSX
1 parent 3c5eae7 commit a7a53a4

File tree

183 files changed

+9194
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+9194
-66
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CMAKE generated file: DO NOT EDIT!
2+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
3+
4+
# Relative path conversion top directories.
5+
SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bobo/dev/projectM-complete-2.1.0-Source")
6+
SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bobo/dev/projectM-complete-2.1.0-Source")
7+
8+
# Force unix paths in dependencies.
9+
SET(CMAKE_FORCE_UNIX_PATHS 1)
10+
11+
12+
# The C and CXX include file regular expressions for this directory.
13+
SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14+
SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15+
SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16+
SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

src/CMakeFiles/progress.marks

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
59

src/Makefile

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
# CMAKE generated file: DO NOT EDIT!
2+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
3+
4+
# Default target executed when no arguments are given to make.
5+
default_target: all
6+
.PHONY : default_target
7+
8+
#=============================================================================
9+
# Special targets provided by cmake.
10+
11+
# Disable implicit rules so canonical targets will work.
12+
.SUFFIXES:
13+
14+
# Remove some rules from gmake that .SUFFIXES does not remove.
15+
SUFFIXES =
16+
17+
.SUFFIXES: .hpux_make_needs_suffix_list
18+
19+
# Suppress display of executed commands.
20+
$(VERBOSE).SILENT:
21+
22+
# A target that is always out of date.
23+
cmake_force:
24+
.PHONY : cmake_force
25+
26+
#=============================================================================
27+
# Set environment variables for the build.
28+
29+
# The shell in which to execute make rules.
30+
SHELL = /bin/sh
31+
32+
# The CMake executable.
33+
CMAKE_COMMAND = "/Applications/CMake 2.8-8.app/Contents/bin/cmake"
34+
35+
# The command to remove a file.
36+
RM = "/Applications/CMake 2.8-8.app/Contents/bin/cmake" -E remove -f
37+
38+
# The program to use to edit the cache.
39+
CMAKE_EDIT_COMMAND = "/Applications/CMake 2.8-8.app/Contents/bin/ccmake"
40+
41+
# The top-level source directory on which CMake was run.
42+
CMAKE_SOURCE_DIR = /Users/bobo/dev/projectM-complete-2.1.0-Source
43+
44+
# The top-level build directory on which CMake was run.
45+
CMAKE_BINARY_DIR = /Users/bobo/dev/projectM-complete-2.1.0-Source
46+
47+
#=============================================================================
48+
# Targets provided globally by CMake.
49+
50+
# Special rule for the target edit_cache
51+
edit_cache:
52+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
53+
"/Applications/CMake 2.8-8.app/Contents/bin/ccmake" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
54+
.PHONY : edit_cache
55+
56+
# Special rule for the target edit_cache
57+
edit_cache/fast: edit_cache
58+
.PHONY : edit_cache/fast
59+
60+
# Special rule for the target install
61+
install: preinstall
62+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
63+
"/Applications/CMake 2.8-8.app/Contents/bin/cmake" -P cmake_install.cmake
64+
.PHONY : install
65+
66+
# Special rule for the target install
67+
install/fast: preinstall/fast
68+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
69+
"/Applications/CMake 2.8-8.app/Contents/bin/cmake" -P cmake_install.cmake
70+
.PHONY : install/fast
71+
72+
# Special rule for the target install/local
73+
install/local: preinstall
74+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
75+
"/Applications/CMake 2.8-8.app/Contents/bin/cmake" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
76+
.PHONY : install/local
77+
78+
# Special rule for the target install/local
79+
install/local/fast: install/local
80+
.PHONY : install/local/fast
81+
82+
# Special rule for the target install/strip
83+
install/strip: preinstall
84+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
85+
"/Applications/CMake 2.8-8.app/Contents/bin/cmake" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
86+
.PHONY : install/strip
87+
88+
# Special rule for the target install/strip
89+
install/strip/fast: install/strip
90+
.PHONY : install/strip/fast
91+
92+
# Special rule for the target list_install_components
93+
list_install_components:
94+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
95+
.PHONY : list_install_components
96+
97+
# Special rule for the target list_install_components
98+
list_install_components/fast: list_install_components
99+
.PHONY : list_install_components/fast
100+
101+
# Special rule for the target package
102+
package: preinstall
103+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
104+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && "/Applications/CMake 2.8-8.app/Contents/bin/cpack" --config ./CPackConfig.cmake
105+
.PHONY : package
106+
107+
# Special rule for the target package
108+
package/fast: package
109+
.PHONY : package/fast
110+
111+
# Special rule for the target package_source
112+
package_source:
113+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..."
114+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && "/Applications/CMake 2.8-8.app/Contents/bin/cpack" --config ./CPackSourceConfig.cmake /Users/bobo/dev/projectM-complete-2.1.0-Source/CPackSourceConfig.cmake
115+
.PHONY : package_source
116+
117+
# Special rule for the target package_source
118+
package_source/fast: package_source
119+
.PHONY : package_source/fast
120+
121+
# Special rule for the target rebuild_cache
122+
rebuild_cache:
123+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
124+
"/Applications/CMake 2.8-8.app/Contents/bin/cmake" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
125+
.PHONY : rebuild_cache
126+
127+
# Special rule for the target rebuild_cache
128+
rebuild_cache/fast: rebuild_cache
129+
.PHONY : rebuild_cache/fast
130+
131+
# The main all target
132+
all: cmake_check_build_system
133+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(CMAKE_COMMAND) -E cmake_progress_start /Users/bobo/dev/projectM-complete-2.1.0-Source/CMakeFiles /Users/bobo/dev/projectM-complete-2.1.0-Source/src/CMakeFiles/progress.marks
134+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(MAKE) -f CMakeFiles/Makefile2 src/all
135+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bobo/dev/projectM-complete-2.1.0-Source/CMakeFiles 0
136+
.PHONY : all
137+
138+
# The main clean target
139+
clean:
140+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(MAKE) -f CMakeFiles/Makefile2 src/clean
141+
.PHONY : clean
142+
143+
# The main clean target
144+
clean/fast: clean
145+
.PHONY : clean/fast
146+
147+
# Prepare targets for installation.
148+
preinstall: all
149+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall
150+
.PHONY : preinstall
151+
152+
# Prepare targets for installation.
153+
preinstall/fast:
154+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall
155+
.PHONY : preinstall/fast
156+
157+
# clear depends
158+
depend:
159+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
160+
.PHONY : depend
161+
162+
# Help Target
163+
help:
164+
@echo "The following are some of the valid targets for this Makefile:"
165+
@echo "... all (the default if no target is provided)"
166+
@echo "... clean"
167+
@echo "... depend"
168+
@echo "... edit_cache"
169+
@echo "... install"
170+
@echo "... install/local"
171+
@echo "... install/strip"
172+
@echo "... list_install_components"
173+
@echo "... package"
174+
@echo "... package_source"
175+
@echo "... rebuild_cache"
176+
.PHONY : help
177+
178+
179+
180+
#=============================================================================
181+
# Special targets to cleanup operation of make.
182+
183+
# Special rule to run CMake to check the build system integrity.
184+
# No rule that depends on this can have commands that come from listfiles
185+
# because they might be regenerated.
186+
cmake_check_build_system:
187+
cd /Users/bobo/dev/projectM-complete-2.1.0-Source && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
188+
.PHONY : cmake_check_build_system
189+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CMAKE generated file: DO NOT EDIT!
2+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
3+
4+
# Relative path conversion top directories.
5+
SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bobo/dev/projectM-complete-2.1.0-Source")
6+
SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bobo/dev/projectM-complete-2.1.0-Source")
7+
8+
# Force unix paths in dependencies.
9+
SET(CMAKE_FORCE_UNIX_PATHS 1)
10+
11+
12+
# The C and CXX include file regular expressions for this directory.
13+
SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14+
SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15+
SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16+
SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">])
2+
3+
#IncludeRegexScan: ^.*$
4+
5+
#IncludeRegexComplain: ^$
6+
7+
#IncludeRegexTransform:
8+
9+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/MstressJuppyDancer.cpp
10+
Pipeline.hpp
11+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/Pipeline.hpp
12+
Transformation.hpp
13+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/Transformation.hpp
14+
MilkdropCompatability.hpp
15+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/MilkdropCompatability.hpp
16+
Waveform.hpp
17+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/Waveform.hpp
18+
NativePreset.hpp
19+
/Users/bobo/dev/projectM-complete-2.1.0-Source/src/NativePresets/NativePreset.hpp
20+
21+
src/libprojectM/NativePresetFactory/MilkdropCompatability.hpp
22+
23+
src/libprojectM/NativePresetFactory/NativePreset.hpp
24+
string
25+
-
26+
BeatDetect.hpp
27+
src/libprojectM/NativePresetFactory/BeatDetect.hpp
28+
Pipeline.hpp
29+
src/libprojectM/NativePresetFactory/Pipeline.hpp
30+
PipelineContext.hpp
31+
src/libprojectM/NativePresetFactory/PipelineContext.hpp
32+
Preset.hpp
33+
src/libprojectM/NativePresetFactory/Preset.hpp
34+
35+
src/libprojectM/Preset.hpp
36+
string
37+
-
38+
Renderer/BeatDetect.hpp
39+
src/libprojectM/Renderer/BeatDetect.hpp
40+
Renderer/Pipeline.hpp
41+
src/libprojectM/Renderer/Pipeline.hpp
42+
Renderer/PipelineContext.hpp
43+
src/libprojectM/Renderer/PipelineContext.hpp
44+
45+
src/libprojectM/Renderer/../Common.hpp
46+
vector
47+
-
48+
typeinfo
49+
-
50+
cstdarg
51+
-
52+
cassert
53+
-
54+
windows.h
55+
-
56+
cstdio
57+
-
58+
dlldefs.h
59+
src/libprojectM/Renderer/../dlldefs.h
60+
cstdlib
61+
-
62+
float.h
63+
-
64+
string
65+
-
66+
67+
src/libprojectM/Renderer/../PCM.hpp
68+
dlldefs.h
69+
src/libprojectM/Renderer/../dlldefs.h
70+
71+
src/libprojectM/Renderer/../dlldefs.h
72+
73+
src/libprojectM/Renderer/BeatDetect.hpp
74+
../PCM.hpp
75+
src/libprojectM/Renderer/../PCM.hpp
76+
../dlldefs.h
77+
src/libprojectM/Renderer/../dlldefs.h
78+
79+
src/libprojectM/Renderer/Filters.hpp
80+
Renderable.hpp
81+
src/libprojectM/Renderer/Renderable.hpp
82+
83+
src/libprojectM/Renderer/PerPixelMesh.hpp
84+
vector
85+
-
86+
87+
src/libprojectM/Renderer/Pipeline.hpp
88+
vector
89+
-
90+
PerPixelMesh.hpp
91+
src/libprojectM/Renderer/PerPixelMesh.hpp
92+
Renderable.hpp
93+
src/libprojectM/Renderer/Renderable.hpp
94+
Filters.hpp
95+
src/libprojectM/Renderer/Filters.hpp
96+
PipelineContext.hpp
97+
src/libprojectM/Renderer/PipelineContext.hpp
98+
Shader.hpp
99+
src/libprojectM/Renderer/Shader.hpp
100+
../Common.hpp
101+
src/libprojectM/Renderer/../Common.hpp
102+
103+
src/libprojectM/Renderer/PipelineContext.hpp
104+
105+
src/libprojectM/Renderer/Renderable.hpp
106+
vector
107+
-
108+
typeinfo
109+
-
110+
TextureManager.hpp
111+
src/libprojectM/Renderer/TextureManager.hpp
112+
113+
src/libprojectM/Renderer/Shader.hpp
114+
string
115+
-
116+
map
117+
-
118+
UserTexture.hpp
119+
src/libprojectM/Renderer/UserTexture.hpp
120+
121+
src/libprojectM/Renderer/TextureManager.hpp
122+
iostream
123+
-
124+
string
125+
-
126+
map
127+
-
128+
vector
129+
-
130+
131+
src/libprojectM/Renderer/Transformation.hpp
132+
PerPixelMesh.hpp
133+
src/libprojectM/Renderer/PerPixelMesh.hpp
134+
math.h
135+
-
136+
137+
src/libprojectM/Renderer/UserTexture.hpp
138+
string
139+
-
140+
141+
src/libprojectM/Renderer/Waveform.hpp
142+
Renderable.hpp
143+
src/libprojectM/Renderer/Renderable.hpp
144+
vector
145+
-
146+

0 commit comments

Comments
 (0)