Skip to content

Releases: Katacc/hexpp

1.2.0

03 Feb 17:31

Choose a tag to compare

  • Changed default CMakeUserProfile to use environment variables for compilers (CXX_COMPILER_PATH``C_COMPILER_PATH)

1.1.1

03 Jun 03:00

Choose a tag to compare

  • Added vcpkg_installed to .gitignore to leave out installed vcpkg dependecies

1.1.0

26 Apr 20:22

Choose a tag to compare

  • Added search command to search for packages from vcpkg (search)
  • run command now lets you pass through arguments to the target executable
  • A bit of rewrite to argument parsing
  • Added gcc as a option to build command (--gcc)
  • vcpkg preset now uses purely vcpkg default settings

1.0.4

19 Apr 22:28

Choose a tag to compare

  • Small adjustments to the generated CMakeLists.txt file for better compability
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
    add_compile_options(-fcolor-diagnostics -fansi-escape-codes)
endif()

1.0.3

16 Apr 22:19

Choose a tag to compare

  • Removed vcpkg install from the add command to avoid double installation phase of packages. This didn't really affect anything, just made the process of adding packages longer than it needed to be.

1.0.2

15 Apr 22:34

Choose a tag to compare

  • Added some flags to the generated CMakeLists.txt enable colored output for ninja + clang combination
set(CMAKE_COLOR_MAKEFILE ON)

add_compile_options(-fansi-escape-codes)
add_compile_options(-fcolor-diagnostics)

1.0.1

14 Apr 23:01

Choose a tag to compare

  • Added .cppm file parsing to generated CMakeLists.txt (.ixx files are not supported by all syntax highlighters)
  • Added a section to README about usage of module files.