Skip to content

Commit 236ccfb

Browse files
committed
Merge remote-tracking branch 'remotes/origin/master' into release
Conflicts: include/version.h src/pack_functions.cmake src/pack_header.cmake
2 parents 2b3053e + 7f90b86 commit 236ccfb

File tree

267 files changed

+1143
-52933
lines changed

Some content is hidden

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

267 files changed

+1143
-52933
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "omicron"]
2-
path = omicron
1+
[submodule "src/omicron"]
2+
path = src/omicron
33
url = https://github.com/febret/omicron.git

Authors.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Lead Developer:
1515

1616
Contributors:
1717
Dennis Chau
18+
Thomas Marrinan
1819
Victor Mateviitsi
1920
Koosha Mirhosseini
2021
Brad McGinnis
@@ -29,7 +30,6 @@ Module Contributors:
2930
Owen Kaluza
3031
Andreas Limbera
3132
Jason Leigh
32-
Thomas Marrinan
3333
Matt McCrory
3434
Alex Simes
3535

CMakeLists.txt

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -31,42 +31,12 @@ if(CMAKE_GENERATOR STREQUAL "Xcode")
3131
endif(CMAKE_GENERATOR STREQUAL "Xcode")
3232
#-------------------------------------------------------------------------------
3333
# Create a build name depending on the OS, Toolset and architecture.
34-
if(CMAKE_GENERATOR STREQUAL "Visual Studio 9 2008")
35-
set(OMEGA_OS_WIN 1)
36-
set(OMEGA_ARCH_32 1)
37-
set(OMEGA_ARCH_WIN32 1)
38-
set(OMEGA_TOOL_VS9 1)
39-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 9 2008 Win64")
40-
set(OMEGA_OS_WIN 1)
41-
set(OMEGA_ARCH_64 1)
42-
set(OMEGA_ARCH_WIN32 1)
43-
set(OMEGA_TOOL_VS9 1)
44-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 10" OR CMAKE_GENERATOR STREQUAL "Visual Studio 10 2010")
45-
set(OMEGA_OS_WIN 1)
46-
set(OMEGA_ARCH_32 1)
47-
set(OMEGA_ARCH_WIN32 1)
48-
set(OMEGA_TOOL_VS10 1)
49-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 10 Win64" OR CMAKE_GENERATOR STREQUAL "Visual Studio 10 2010 Win64")
50-
set(OMEGA_OS_WIN 1)
51-
set(OMEGA_ARCH_64 1)
52-
set(OMEGA_ARCH_WIN32 1)
53-
set(OMEGA_TOOL_VS10 1)
54-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 11" OR CMAKE_GENERATOR STREQUAL "Visual Studio 11 2012")
55-
set(OMEGA_OS_WIN 1)
56-
set(OMEGA_ARCH_32 1)
57-
set(OMEGA_ARCH_WIN32 1)
58-
set(OMEGA_TOOL_VS11 1)
59-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 11 Win64" OR CMAKE_GENERATOR STREQUAL "Visual Studio 10 2012 Win64")
60-
set(OMEGA_OS_WIN 1)
61-
set(OMEGA_ARCH_64 1)
62-
set(OMEGA_ARCH_WIN32 1)
63-
set(OMEGA_TOOL_VS11 1)
64-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 12" OR CMAKE_GENERATOR STREQUAL "Visual Studio 12 2013")
34+
if(CMAKE_GENERATOR STREQUAL "Visual Studio 12 2013")
6535
set(OMEGA_OS_WIN 1)
6636
set(OMEGA_ARCH_32 1)
6737
set(OMEGA_ARCH_WIN32 1)
6838
set(OMEGA_TOOL_VS12 1)
69-
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 12 Win64" OR CMAKE_GENERATOR STREQUAL "Visual Studio 12 2013 Win64")
39+
elseif(CMAKE_GENERATOR STREQUAL "Visual Studio 12 2013 Win64")
7040
set(OMEGA_OS_WIN 1)
7141
set(OMEGA_ARCH_64 1)
7242
set(OMEGA_ARCH_WIN32 1)
@@ -111,7 +81,7 @@ elseif(CMAKE_GENERATOR STREQUAL "Xcode")
11181
set(OMEGA_ARCH_32 1)
11282
set(OMEGA_ARCH_I386 1)
11383
set(OMEGA_TOOL_GCC 1)
114-
endif(CMAKE_GENERATOR STREQUAL "Visual Studio 9 2008")
84+
endif()
11585

11686
# The default home directory is the omegalib source directoy. At runtime this
11787
# will be replaced by the OMEGA_HOME environment variable when available.

CMakeModules/ModuleUtils.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function(module_def MODULE_NAME URL DESCRIPTION)
3838
# substitute dashes with underscores in macro module names ('-' is
3939
# not a valid character
4040
string(REPLACE "-" "_" MACRO_MODULE_NAME ${MODULE_NAME})
41+
string(REPLACE "." "_" MACRO_MODULE_NAME ${MACRO_MODULE_NAME})
4142
file(APPEND ${MODULES_CONFIG_FILE} "#define ${MACRO_MODULE_NAME}_ENABLED\n")
4243

4344
# find dependencies

README.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)