Skip to content

Commit c7bb6f5

Browse files
committed
GPA 3.6 release
1 parent a8a0421 commit c7bb6f5

File tree

1,215 files changed

+1058380
-969236
lines changed

Some content is hidden

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

1,215 files changed

+1058380
-969236
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*.user
77
*.userosscache
88
*.sln.docstates
9+
compile_commands.json
910

1011
# User-specific files (MonoDevelop/Xamarin Studio)
1112
*.userprefs
@@ -29,7 +30,7 @@ Doc/public
2930
*.so
3031
*.a
3132
*.pyc
32-
CMakeBuild*/
33+
build/CMakeBuild*/
3334

3435
# Visual Studo 2015 cache/options directory
3536
.vs/

CMakeLists.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ cmake_minimum_required(VERSION 3.5.1)
44
set(DEPTH "./")
55

66
message(STATUS "Generating project files for GPA....")
7-
set(GPA_CMAKE_MODULES_DIR ${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules)
7+
set(GPA_CMAKE_MODULES_DIR ${CMAKE_CURRENT_SOURCE_DIR}/build/cmake_modules)
88

9-
include(${GPA_CMAKE_MODULES_DIR}/CommonDefs.cmake)
10-
include(${GPA_CMAKE_MODULES_DIR}/BuildFlags.cmake)
9+
include(${GPA_CMAKE_MODULES_DIR}/gpa_version.cmake)
10+
include(${GPA_CMAKE_MODULES_DIR}/defs.cmake)
11+
include(${GPA_CMAKE_MODULES_DIR}/build_flags.cmake)
1112

1213
if(${AMDT_INTERNAL_BUILD_FLAG})
1314
include(${CMAKE_COMMON_SRC_GLOBAL_INTERNAL})
@@ -16,16 +17,16 @@ endif()
1617
set(GPA_ALL_OPEN_SOURCE ON)
1718

1819
if(${BUILD_ANDROID})
19-
include (${GPA_CMAKE_MODULES_DIR}/GPA-Android.cmake)
20+
include (${GPA_CMAKE_MODULES_DIR}/android.cmake)
2021

2122
project(GPUPerfAPI-Full${AMDTInternalSuffix} VERSION ${GPA_MAJOR_VERSION}.${GPA_MINOR_VERSION} LANGUAGES C CXX)
22-
include(${GPA_CMAKE_MODULES_DIR}/Targets.cmake)
23+
include(${GPA_CMAKE_MODULES_DIR}/targets.cmake)
2324

2425
return()
2526
endif()
2627

2728
## Define the GPA solution name
2829
project(GPUPerfAPI${AMDTInternalSuffix} VERSION ${GPA_MAJOR_VERSION}.${GPA_MINOR_VERSION} LANGUAGES C CXX)
2930

30-
include(${GPA_CMAKE_MODULES_DIR}/Targets.cmake)
31+
include(${GPA_CMAKE_MODULES_DIR}/targets.cmake)
3132
message(STATUS "Finished generating project files for GPA.")

CMakeModules/BuildFlags.cmake

-91
This file was deleted.

CMakeModules/Common.cmake

-63
This file was deleted.

CMakeModules/CommonDefs.cmake

-80
This file was deleted.

CMakeModules/CommonMacros.cmake

-77
This file was deleted.

0 commit comments

Comments
 (0)