fixed pointer numbers time!
parent
496a1d6db7
commit
2bab551319
|
@ -1,7 +1,7 @@
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
include(cmake/color.cmake)
|
include(cmake/color.cmake)
|
||||||
|
|
||||||
set(BLT_VERSION 0.15.12)
|
set(BLT_VERSION 0.16.0)
|
||||||
set(BLT_TEST_VERSION 0.0.1)
|
set(BLT_TEST_VERSION 0.0.1)
|
||||||
|
|
||||||
set(BLT_TARGET BLT)
|
set(BLT_TARGET BLT)
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* <Short Description>
|
||||||
|
* Copyright (C) 2024 Brett Terpstra
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef BLT_FIXED_POINT_H
|
||||||
|
#define BLT_FIXED_POINT_H
|
||||||
|
|
||||||
|
namespace blt
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif //BLT_FIXED_POINT_H
|
|
@ -1 +1 @@
|
||||||
Subproject commit 67c24619e4f5ab2097b74cc397732c17a25d6944
|
Subproject commit 946ebad67a21212d11a0dd4deb7cdedc297d47bc
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*
|
||||||
|
* <Short Description>
|
||||||
|
* Copyright (C) 2024 Brett Terpstra
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
#include <blt/math/fixed_point.h>
|
|
@ -37,6 +37,7 @@ namespace blt::test
|
||||||
}
|
}
|
||||||
|
|
||||||
void vector_run();
|
void vector_run();
|
||||||
|
void fixed_point();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //BLT_BLT_TESTS_H
|
#endif //BLT_BLT_TESTS_H
|
||||||
|
|
|
@ -107,6 +107,9 @@ int main(int argc, const char** argv)
|
||||||
if (args.contains("--vector"))
|
if (args.contains("--vector"))
|
||||||
blt::test::vector_run();
|
blt::test::vector_run();
|
||||||
|
|
||||||
|
if (args.contains("--fixed_point"))
|
||||||
|
blt::test::fixed_point();
|
||||||
|
|
||||||
if (args.contains("--nbt"))
|
if (args.contains("--nbt"))
|
||||||
{
|
{
|
||||||
auto v = blt::arg_parse::get<std::string>(args["nbt"]);
|
auto v = blt::arg_parse::get<std::string>(args["nbt"]);
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
* <Short Description>
|
||||||
|
* Copyright (C) 2024 Brett Terpstra
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
#include <blt/math/fixed_point.h>
|
||||||
|
|
||||||
|
namespace blt::test
|
||||||
|
{
|
||||||
|
|
||||||
|
void fixed_point()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue