Browse Source

modules: updated Corrade modules.

pull/225/head
Vladimír Vondruš 8 years ago
parent
commit
23b0ae6b12
  1. 2
      modules/FindCorrade.cmake
  2. 7
      modules/FindNodeJs.cmake

2
modules/FindCorrade.cmake

@ -234,7 +234,7 @@
# This file is part of Corrade. # This file is part of Corrade.
# #
# Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, # Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
# 2017 Vladimír Vondruš <mosra@centrum.cz> # 2017, 2018 Vladimír Vondruš <mosra@centrum.cz>
# #
# Permission is hereby granted, free of charge, to any person obtaining a # Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"), # copy of this software and associated documentation files (the "Software"),

7
modules/FindNodeJs.cmake

@ -4,15 +4,15 @@
# #
# Finds the Node.js executable. This module defines: # Finds the Node.js executable. This module defines:
# #
# NODEJS_FOUND - True if Node.js executable is found # NodeJs_FOUND - True if Node.js executable is found
# NodeJs::NodeJs - Node.js executable imported target # NodeJs::NodeJs - Node.js executable imported target
# #
# #
# This file is part of Corrade. # This file is part of Corrade.
# #
# Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 # Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
# Vladimír Vondruš <mosra@centrum.cz> # 2017, 2018 Vladimír Vondruš <mosra@centrum.cz>
# #
# Permission is hereby granted, free of charge, to any person obtaining a # Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"), # copy of this software and associated documentation files (the "Software"),
@ -34,6 +34,7 @@
# #
find_program(NODEJS_EXECUTABLE node) find_program(NODEJS_EXECUTABLE node)
mark_as_advanced(NODEJS_EXECUTABLE)
include(FindPackageHandleStandardArgs) include(FindPackageHandleStandardArgs)
find_package_handle_standard_args("NodeJs" DEFAULT_MSG NODEJS_EXECUTABLE) find_package_handle_standard_args("NodeJs" DEFAULT_MSG NODEJS_EXECUTABLE)

Loading…
Cancel
Save